Blame view

app/mihaildev/elfinder/AssetsCallBack.php 395 Bytes
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <?php
  /**
   * Date: 23.01.14
   * Time: 0:51
   */
  
  namespace app\mihaildev\elfinder;
  
  
  use yii\web\AssetBundle;
  
  class AssetsCallBack extends AssetBundle{
      public $js = array(
          'js/elfinder.callback.js'
      );
      public $depends = array(
          'yii\web\JqueryAsset'
      );
  
      public function init()
      {
          $this->sourcePath = __DIR__."/assets";
          parent::init();
      }
  }