ivoglent / yii2lte
AdminLTE template for Yii2 framework
Installs: 557
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.4.0
- yiisoft/yii2-jui: *
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is auto-updated.
Last update: 2024-10-25 01:09:40 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'
]
]