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

8
namespace yii\grid;
Qiang Xue committed
9 10 11 12

use yii\web\AssetBundle;

/**
13
 * This asset bundle provides the javascript files for the [[GridView]] widget.
Qiang Xue committed
14 15 16 17 18 19 20
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class GridViewAsset extends AssetBundle
{
	public $sourcePath = '@yii/assets';
Alexander Makarov committed
21
	public $js = [
Qiang Xue committed
22
		'yii.gridView.js',
Alexander Makarov committed
23 24
	];
	public $depends = [
Qiang Xue committed
25
		'yii\web\YiiAsset',
Alexander Makarov committed
26
	];
Qiang Xue committed
27
}