PHP code example of sheillendra / yii2-adminlte
1. Go to this page and download the library: Download sheillendra/yii2-adminlte 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/ */
sheillendra / yii2-adminlte example snippets
// /config/main-local.php for yii2-app-advanced
// /config/web.php for yii2-basic
...
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
...
$config['modules']['gii'] = [
'class'=>'yii\gii\Module',
'generators' =>[
'adminlte-crud' => ['class'=>'sheillendra\adminlte\gii\generators\crud\Generator']
]
];
}
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $searchModel backend\models\MenusSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = Yii::t('app', 'Menus Cruds');
$this->params['breadcrumbs'][] = $this->title;
$this->params['selectedSidebar'] = 'menu';