модуль генерации пользователей
This commit is contained in:
13
frontend/modules/access/views/access/index.php
Normal file
13
frontend/modules/access/views/access/index.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
use yii\grid\GridView;
|
||||
use yii\widgets\DetailView;
|
||||
|
||||
echo GridView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'columns' => [
|
||||
['class' => 'yii\grid\SerialColumn'],
|
||||
'name',
|
||||
'access',
|
||||
],
|
||||
]);
|
12
frontend/modules/access/views/default/index.php
Normal file
12
frontend/modules/access/views/default/index.php
Normal file
@ -0,0 +1,12 @@
|
||||
<div class="access-default-index">
|
||||
<h1><?= $this->context->action->uniqueId ?></h1>
|
||||
<p>
|
||||
This is the view content for action "<?= $this->context->action->id ?>".
|
||||
The action belongs to the controller "<?= get_class($this->context) ?>"
|
||||
in the "<?= $this->context->module->id ?>" module.
|
||||
</p>
|
||||
<p>
|
||||
You may customize this page by editing the following file:<br>
|
||||
<code><?= __FILE__ ?></code>
|
||||
</p>
|
||||
</div>
|
Reference in New Issue
Block a user