yii2-netdisk/assets/AppAsset.php

30 lines
504 B
PHP
Raw Normal View History

2013-07-15 22:49:22 -04:00
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace app\assets;
2013-07-15 22:49:22 -04:00
use yii\web\AssetBundle;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class AppAsset extends AssetBundle
{
2013-07-25 07:57:49 -04:00
public $basePath = '@webroot';
public $baseUrl = '@web';
2013-10-18 07:30:41 +02:00
public $css = [
2013-07-15 22:49:22 -04:00
'css/site.css',
2013-10-18 07:30:41 +02:00
];
public $js = [
];
public $depends = [
2013-07-15 22:49:22 -04:00
'yii\web\YiiAsset',
2013-08-08 20:00:48 -04:00
'yii\bootstrap\BootstrapAsset',
2013-10-18 07:30:41 +02:00
];
2013-07-15 22:49:22 -04:00
}