assets.php 3.15 KB
Newer Older
Alexander Kochetov committed
1
<?php
Qiang Xue committed
2 3 4 5 6
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */
Alexander Kochetov committed
7 8

return array(
9
	'yii/bootstrap' => array(
Alexander Kochetov committed
10 11 12 13 14
		'sourcePath' => __DIR__ . '/assets',
		'css' => array(
			YII_DEBUG ? 'css/bootstrap.css' : 'css/bootstrap.min.css',
		),
	),
15
	'yii/bootstrap/responsive' => array(
Alexander Kochetov committed
16 17 18 19
		'sourcePath' => __DIR__ . '/assets',
		'css' => array(
			YII_DEBUG ? 'css/bootstrap-responsive.css' : 'css/bootstrap-responsive.min.css',
		),
20
		'depends' => array('yii/bootstrap'),
Alexander Kochetov committed
21
	),
22
	'yii/bootstrap/affix' => array(
Alexander Kochetov committed
23 24 25 26
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-affix.js',
		),
27
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
28
	),
29
	'yii/bootstrap/alert' => array(
Alexander Kochetov committed
30 31 32 33
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-alert.js',
		),
34
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
35
	),
36
	'yii/bootstrap/button' => array(
Alexander Kochetov committed
37 38 39 40
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-button.js',
		),
41
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
42
	),
43
	'yii/bootstrap/carousel' => array(
Alexander Kochetov committed
44 45 46 47
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-carousel.js',
		),
48
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
49
	),
50
	'yii/bootstrap/collapse' => array(
Alexander Kochetov committed
51 52 53 54
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-collapse.js',
		),
55
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
56
	),
57
	'yii/bootstrap/dropdown' => array(
Alexander Kochetov committed
58 59 60 61
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-dropdown.js',
		),
62
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
63
	),
64
	'yii/bootstrap/modal' => array(
Alexander Kochetov committed
65 66 67 68
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-modal.js',
		),
69
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
70
	),
71
	'yii/bootstrap/popover' => array(
Alexander Kochetov committed
72 73 74 75
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-popover.js',
		),
76
		'depends' => array('yii/bootstrap/tooltip'),
Alexander Kochetov committed
77
	),
78
	'yii/bootstrap/scrollspy' => array(
Alexander Kochetov committed
79 80 81 82
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-scrollspy.js',
		),
83
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
84
	),
85
	'yii/bootstrap/tab' => array(
Alexander Kochetov committed
86 87 88 89
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-tab.js',
		),
90
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
91
	),
92
	'yii/bootstrap/tooltip' => array(
Alexander Kochetov committed
93 94 95 96
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-tooltip.js',
		),
97
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
98
	),
99
	'yii/bootstrap/transition' => array(
Alexander Kochetov committed
100 101 102 103
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-transition.js',
		),
104
		'depends' => array('yii/jquery', 'yii/bootstrap'),
Alexander Kochetov committed
105
	),
106
	'yii/bootstrap/typeahead' => array(
Alexander Kochetov committed
107 108 109 110
		'sourcePath' => __DIR__ . '/assets',
		'js' => array(
			'js/bootstrap-typeahead.js',
		),
111
		'depends' => array('yii/jquery', 'yii/bootstrap', 'yii/bootstrap/transition'),
Alexander Kochetov committed
112 113
	),
);