17 lines
490 B
17 lines
490 B
12 years ago
|
<?php
|
||
|
/**
|
||
11 years ago
|
* @var yii\web\View $this
|
||
12 years ago
|
* @var yii\widgets\ActiveForm $form
|
||
|
* @var yii\gii\generators\crud\Generator $generator
|
||
|
*/
|
||
|
|
||
|
echo $form->field($generator, 'modelClass');
|
||
12 years ago
|
echo $form->field($generator, 'searchModelClass');
|
||
12 years ago
|
echo $form->field($generator, 'controllerClass');
|
||
12 years ago
|
echo $form->field($generator, 'baseControllerClass');
|
||
12 years ago
|
echo $form->field($generator, 'moduleID');
|
||
11 years ago
|
echo $form->field($generator, 'indexWidgetType')->dropDownList([
|
||
12 years ago
|
'grid' => 'GridView',
|
||
|
'list' => 'ListView',
|
||
11 years ago
|
]);
|