ignacio/custom-gii

There is no license information available for the latest version (v1.0.0) of this package.

Custom gii para generar model y crud en yii2

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ignacio/custom-gii

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

This package is not auto-updated.

Last update: 2025-10-30 03:00:19 UTC


README

En frontend/config/main-local.php configurar la nueva clase del gii

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