Blame view

assets/AdminLteAsset.php 584 Bytes
ea1a19bc   Yarik   Testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
      
      namespace artweb\artbox\assets;
      
      use yii\web\AssetBundle;
      
      class AdminLteAsset extends AssetBundle
      {
          public $sourcePath = '@bower/';
          public $css = [
              'admin-lte/dist/css/AdminLTE.css',
              'admin-lte/dist/css/skins/_all-skins.css',
          ];
          
          public $js = [
              'admin-lte/dist/js/app.js',
          
          ];
          public $depends = [
              'yii\web\YiiAsset',
              'yii\bootstrap\BootstrapPluginAsset',
              'artweb\artbox\assets\FontAwesomeAsset',
          ];
      }