dev-master
9999999-devThis generator generates a controller and views that implement CRUD (Create, Read, Update, Delete) operations for the specified data model.
MIT
The Requires
by Igor Chepurnoy
extension yii2
This generator generates a controller and views that implement CRUD (Create, Read, Update, Delete) operations for the specified data model.
This generator generates enumerable classes or controller and views that implement CRUD (Create, Read, Update, Delete) operations for the specified data model., (*1)
The preferred way to install this extension is through composer., (*3)
Either run, (*4)
php composer.phar require --prefer-dist yii2mod/yii2-gii-extended "*"
or add, (*5)
"yii2mod/yii2-gii-extended": "*"
to the require section of your composer.json., (*6)
To use this extension, add to main config in gii section following code:, (*7)
'gii' => [ ... 'generators' => [ 'enumerable' => [ 'class' => 'yii2mod\gii\enum\Generator', ], 'crud' => [ 'class' => 'yii2mod\gii\crud\Generator', ], ], ],
This generator generates a controller and views that implement CRUD (Create, Read, Update, Delete) operations for the specified data model.
MIT
extension yii2