Blame view

thread/widgets/editors/tinymce/assets/AssetLang.php 465 Bytes
d1f8bd40   Alexey Boroda   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
26
27
28
  <?php
  
  namespace thread\widgets\editors\tinymce\assets;
  
  use yii\web\AssetBundle;
  
  /**
   * Class AssetLang
   * 
   * @package thread\extensions\editors\tinymce\assets
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  
  class AssetLang extends AssetBundle {
      /**
       * @var string
       */
      public $sourcePath = __DIR__;
      /**
       * @var array
       */
      public $js = [
          'langs/uk-UA.js',
          'langs/ru-RU.js',
      ];
  
  }