BootstrapPluginAsset.php 505 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\bootstrap;
9

10 11 12
use yii\web\AssetBundle;

/**
13
 *
14 15 16
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
17
class BootstrapPluginAsset extends AssetBundle
18 19 20
{
	public $sourcePath = '@yii/bootstrap/assets';
	public $js = array(
21
		'js/bootstrap.js',
22 23 24
	);
	public $depends = array(
		'yii\web\JqueryAsset',
25
		'yii\bootstrap\BootstrapAsset',
26 27
	);
}