raphaelbsr/yii2-gii
Customized Yii2 Crud Generator for ajax use, (*1)
Installation
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
php composer.phar require raphaelbsr/yii2-gii "~1.0"
or add, (*4)
"raphaelbsr/yii2-gii": "~1.0"
to the require section of your composer.json
file., (*5)
Usage
Once the extension is installed, simply modify your application configuration as follows:, (*6)
...
if (!YII_ENV_TEST) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'generators' => [
'crud' => [
'class' => 'yii\gii\generators\crud\Generator',
'templates' => [
'Raphaelbsr Crud' => '@vendor/raphaelbsr/yii2-gii/crud/default',
],
],
]
];
}