PHP code example of jinowom / yii2jajaxcrud

1. Go to this page and download the library: Download jinowom/yii2jajaxcrud library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jinowom / yii2jajaxcrud example snippets


'modules' => [
    'gridview' =>  [
        'class' => '\kartik\grid\Module'
    ]       
]

$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
    'class' => 'yii\gii\Module',
];
$config['modules']['gii']['generators']['jinowommodel'] = [
    'class' => \jinowom\jajaxcrud\generators\model\Generator::class,
    'showName' => "YOUR MODEL GENERATOR",
];
$config['modules']['gii']['generators']['jinowomjajaxcrud'] = [
    'class' => \jinowom\jajaxcrud\generators\crud\Generator::class,
    'showName' => "YOUR AJAX CRUD GENERATOR",
];

php composer.phar har