ignacio / custom-gii

此包的最新版本(v1.0.0)没有可用的许可证信息。

为yii2生成模型的custom-gii

v1.0.0 2017-10-04 15:04 UTC

This package is not auto-updated.

Last update: 2024-09-18 21:06:30 UTC


README

在 frontend/config/main-local.php 中配置新的 gii 类

$config['modules']['gii'] = [
        'class'      => 'yii\gii\Module',
        'generators' => [
        'crud'   => [
            'class' => 'customGii\gii\crud\Generator',
            'indexWidgetType' => 'grid',
        ]
    ]
];