PHP code example of mervick / yii2-adminlte-debug

1. Go to this page and download the library: Download mervick/yii2-adminlte-debug 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/ */

    

mervick / yii2-adminlte-debug example snippets



if (!YII_ENV_TEST) {
    // configuration adjustments for 'dev' environment
    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = [
        'class' => 'mervick\adminlte\debug\Module',
        'controllerNamespace' => 'mervick\adminlte\debug\controllers',
        'allowedIPs' => ['*'],   // for all ips with 'dev' role
        'allowedRoles' => ['dev'],
    ];
}