Blame view

vendor/kartik-v/yii2-widget-datepicker/DatePickerAsset.php 646 Bytes
ad2e91f7   Mihail   move multyparser ...
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
  <?php
  
  /**
   * @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2015
   * @package yii2-widgets
   * @subpackage yii2-widget-datepicker
   * @version 1.3.3
   */
  
  namespace kartik\date;
  
  /**
   * Asset bundle for DatePicker Widget
   *
   * @author Kartik Visweswaran <kartikv2@gmail.com>
   * @since 1.0
   */
  class DatePickerAsset extends \kartik\base\AssetBundle
  {
      public function init()
      {
          $this->setSourcePath(__DIR__ . '/assets');
          $this->setupAssets('css', ['css/bootstrap-datepicker3', 'css/datepicker-kv']);
          $this->setupAssets('js', ['js/bootstrap-datepicker', 'js/datepicker-kv']);
          parent::init();
      }
  }