assets.php 3.01 KB
Newer Older
Alexander Kochetov committed
1 2 3
<?php

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