grozzzny / adminlte_easyiicms
Adminlte for EasyiiCMS
Installs: 67
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.6.0
- almasaeed2010/adminlte: v2.4.18
- grozzzny/depends: dev-master
This package is auto-updated.
Last update: 2024-11-21 20:50:50 UTC
README
This module allows to Easy yii2 cms
Built on top of Bootstrap 3, AdminLTE provides a range of responsive, reusable, and commonly used components. More..
Installation guide
$ php composer.phar require grozzzny/adminlte_easyiicms "dev-master"
or
$ composer require grozzzny/adminlte_easyiicms "dev-master"
or composer.json:
"require": { "grozzzny/adminlte_easyiicms": "dev-master" }
File config
$config = [ ... 'components' => [ 'view' => [ 'theme' => [ 'pathMap' => [ '@vendor/noumo/easyii/views' => '@grozzzny/adminlte_easyiicms/views', ], ], ] ] ... ]; $config['modules']['admin']['layout'] = '@grozzzny/adminlte_easyiicms/views/layouts/main'; return $config;
Skins
By default the extension uses blue skin for AdminLTE. You can change it in config file.
'components' => [ 'assetManager' => [ 'bundles' => [ 'grozzzny\adminlte_easyiicms\assets\AdminLteAsset' => [ 'skin' => 'skin-black', ], ], ], ],
Here is the list of available skins:
"skin-blue",
"skin-black",
"skin-red",
"skin-yellow",
"skin-purple",
"skin-green",
"skin-blue-light",
"skin-black-light",
"skin-red-light",
"skin-yellow-light",
"skin-purple-light",
"skin-green-light"