TemplateAsset.php
1.26 KB
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
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace backend\assets;
use Yii;
use yii\web\AssetBundle;
use yii\web\View;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class TemplateAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
'css/style.default.css',
];
public $js = [
'js/jquery-migrate-1.2.1.min.js',
'js/jquery-ui-1.10.3.min.js',
'js/bootstrap.min.js',
'js/modernizr.min.js',
'js/pace.min.js',
'js/retina.min.js',
'js/jquery.cookies.js',
];
public $depends = [
];
/**
* Registers this asset bundle with a view.
* @param View $view the view to be registered with
* @return static the registered asset bundle instance
*/
public static function register($view)
{
$view->registerJsFile('/js/jquery-1.11.1.min.js',array('position'=>View::POS_BEGIN));
$view->registerJsFile('/js/custom.js',array('position'=>View::POS_END));
$view->registerJsFile('/js/common.js',array('position'=>View::POS_END));
return parent::register($view);
}
}