You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
490 B
17 lines
490 B
11 years ago
|
<?php
|
||
|
/**
|
||
11 years ago
|
* @var yii\web\View $this
|
||
11 years ago
|
* @var yii\widgets\ActiveForm $form
|
||
|
* @var yii\gii\generators\crud\Generator $generator
|
||
|
*/
|
||
|
|
||
|
echo $form->field($generator, 'modelClass');
|
||
11 years ago
|
echo $form->field($generator, 'searchModelClass');
|
||
11 years ago
|
echo $form->field($generator, 'controllerClass');
|
||
11 years ago
|
echo $form->field($generator, 'baseControllerClass');
|
||
11 years ago
|
echo $form->field($generator, 'moduleID');
|
||
11 years ago
|
echo $form->field($generator, 'indexWidgetType')->dropDownList([
|
||
11 years ago
|
'grid' => 'GridView',
|
||
|
'list' => 'ListView',
|
||
11 years ago
|
]);
|