Yii2 framework backup
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

<?php
/**
11 years ago
* @var yii\web\View $this
* @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');
echo $form->field($generator, 'baseControllerClass');
11 years ago
echo $form->field($generator, 'moduleID');
echo $form->field($generator, 'indexWidgetType')->dropDownList([
11 years ago
'grid' => 'GridView',
'list' => 'ListView',
]);