Completed
Push — master ( 5427db...806228 )
by Antonio
07:17
created

DatePickerAsset

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 16
c 1
b 0
f 0
1
<?php
2
/**
3
 * @copyright Copyright (c) 2013-2016 2amigOS! Consulting Group LLC
4
 * @link http://2amigos.us
5
 * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
6
 */
7
namespace dosamigos\datepicker;
8
9
use yii\web\AssetBundle;
10
11
/**
12
 * DatePickerAsset
13
 *
14
 * @author Antonio Ramirez <[email protected]>
15
 * @link http://www.ramirezcobos.com/
16
 * @link http://www.2amigos.us/
17
 * @package dosamigos\datepicker
18
 */
19
class DatePickerAsset extends AssetBundle
20
{
21
    public $sourcePath = '@bower/bootstrap-datepicker/dist';
22
23
    public $css = [
24
        'css/bootstrap-datepicker3.css',
25
    ];
26
27
    public $js = [
28
        'js/bootstrap-datepicker.js'
29
    ];
30
31
    public $depends = [
32
        'yii\bootstrap\BootstrapPluginAsset'
33
    ];
34
}
35