ivoglent / yii2lte
There is no license information available for the latest version (1.0.5) of this package.
AdminLTE template for Yii2 framework
1.0.5
2020-02-24 14:07 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2-jui: *
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is auto-updated.
Last update: 2026-02-25 03:52:17 UTC
README
Installation
composer require @ivoglent/yii2lte:latest
Configuration
Enable module in config file :
'modules' => ['adminlte' => '\ivoglent\yii2lte\AdminLTEModule']
Add adminlte module to bootstrap
'bootstrap' => ['log', 'adminlte']
Example module config :
'adminlte' => [
'class' => \ivoglent\yii2lte\AdminLTEModule::className(),
'menuFile' => '@backend/views/layouts/menu.php',
'configs' => [
'logo' => 'SOS System',
'footer' => '© ' . date('Y') . ' by xDev'
]
]