43 lines
714 B
PHP
43 lines
714 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* @link https://www.yiiframework.com/
|
||
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
|
* @license https://www.yiiframework.com/license/
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace yii\debug;
|
||
|
|
|
||
|
|
use yii\web\AssetBundle;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Timeline asset bundle
|
||
|
|
*
|
||
|
|
* @author Dmitriy Bashkarev <dmitriy@bashkarev.com>
|
||
|
|
* @since 2.0.7
|
||
|
|
*/
|
||
|
|
class TimelineAsset extends AssetBundle
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* {@inheritdoc}
|
||
|
|
*/
|
||
|
|
public $sourcePath = '@yii/debug/assets';
|
||
|
|
/**
|
||
|
|
* {@inheritdoc}
|
||
|
|
*/
|
||
|
|
public $css = [
|
||
|
|
'css/timeline.css',
|
||
|
|
];
|
||
|
|
/**
|
||
|
|
* {@inheritdoc}
|
||
|
|
*/
|
||
|
|
public $js = [
|
||
|
|
'js/timeline.js',
|
||
|
|
];
|
||
|
|
/**
|
||
|
|
* {@inheritdoc}
|
||
|
|
*/
|
||
|
|
public $depends = [
|
||
|
|
'yii\debug\DebugAsset'
|
||
|
|
];
|
||
|
|
}
|