yujin1st / gii-templates
yii2 gii templates
Installs: 1 433
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 1
Type:yii2-extension
Requires
- php: >=5.4.0
- yiisoft/yii2: >=2.0.6
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-06 21:35:00 UTC
README
Core template extends basic gii template for a few things:
- Added scenarios and behavior methods to model
- Commented sections in model
- AccessController added to controller
- Alert messages added to controller
- Cancel button added to form
Install
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require yujin1st/gii-templates "@dev"
or add
"yujin1st/gii-templates": "@dev"
to the require section of your composer.json
file.
Usage
Setup templates to gii configuration
$config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'generators' => [ 'crud' => [ 'class' => 'yii\gii\generators\crud\Generator', 'templates' => [ 'core' => '@yujin1st/gii/core/crud', ] ], 'model' => [ 'class' => 'yii\gii\generators\model\Generator', 'templates' => [ 'core' => '@yujin1st/gii/core/model', ] ] ], ];