-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWizardAsset.php
More file actions
39 lines (34 loc) · 788 Bytes
/
Copy pathWizardAsset.php
File metadata and controls
39 lines (34 loc) · 788 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* @link https://github.com/Chofoteddy/yii2-bootstrap-wizard
* @copyright Copyright (c) 215 Chofoteddy
* @license https://raw.githubusercontent.com/Chofoteddy/yii2-bootstrap-wizard/master/LICENSE
*/
namespace chofoteddy\wizard;
use Yii;
use yii\helpers\ArrayHelper;
/**
* Bower asset for the Twitter Bootstrap Wizard
* @author Chofoteddy
* @author Faryshta <angeldelcaos@gmail.com>
*/
class WizardAsset extends \yii\web\AssetBundle
{
/**
* @inheritdoc
*/
public $sourcePath = '@bower/twitter-bootstrap-wizard/';
/**
* @inheritdoc
*/
public $js = [
'jquery.bootstrap.wizard.min.js'
];
/**
* @inheritdoc
*/
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
];
}