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