maxwen / yii2-adminlte-gii
带有AdminLTE主题的yii2代码生成器
1.0.3
2016-10-20 03:38 UTC
Requires
- almasaeed2010/adminlte: ~2.0
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2024-09-14 19:14:51 UTC
README
为AdminLTE主题生成yii2代码。
安装
在你的main-local.php中,添加以下选项
$config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'allowedIPs' => ['127.0.0.1'], 'controllerNamespace' => 'maxwen\gii\controllers', 'generators' => [ 'AdminLte Crud' => [ 'class' => 'maxwen\gii\generators\crud\Generator', ] ] ];