1 | <?php |
||
10 | class AdminLteAsset extends AssetBundle |
||
11 | { |
||
12 | public $sourcePath = '@vendor/zacksleo/adminlte-assets'; |
||
13 | public $css = [ |
||
14 | 'css/AdminLTE.min.css', |
||
15 | ]; |
||
16 | public $js = [ |
||
17 | 'js/adminlte.min.js' |
||
18 | ]; |
||
19 | public $depends = [ |
||
20 | 'yii\web\YiiAsset', |
||
21 | 'yii\bootstrap\BootstrapAsset', |
||
22 | 'yii\bootstrap\BootstrapPluginAsset', |
||
23 | 'zacksleo\yii2\backend\assets\FontAwesomeAsset' |
||
24 | ]; |
||
25 | /** |
||
26 | * @var string|bool Choose skin color, eg. `'skin-blue'` or set `false` to disable skin loading |
||
27 | * @see https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html#layout |
||
28 | */ |
||
29 | public $skin = '_all-skins'; |
||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function init() |
||
44 | } |