maxwen/yii2-adminlte-gii

带有AdminLTE主题的yii2代码生成器

安装量: 1,965

依赖者: 0

建议者: 0

安全性: 0

星标: 9

关注者: 4

分支: 4

类型:扩展

1.0.3 2016-10-20 03:38 UTC

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',
			]
		]
	];