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