1 | <?php |
||
23 | class BootstrapBundle extends Bundle implements AssetsProviderInterface { |
||
24 | |||
25 | /** |
||
26 | * Bootstrap "Danger". |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const BOOTSTRAP_DANGER = "danger"; |
||
31 | |||
32 | /** |
||
33 | * Bootstrap "Default". |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | const BOOTSTRAP_DEFAULT = "default"; |
||
38 | |||
39 | /** |
||
40 | * Bootstrap "Info". |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | const BOOTSTRAP_INFO = "info"; |
||
45 | |||
46 | /** |
||
47 | * Bootstrap "Primary". |
||
48 | * |
||
49 | * @var string |
||
50 | */ |
||
51 | const BOOTSTRAP_PRIMARY = "primary"; |
||
52 | |||
53 | /** |
||
54 | * Bootstrap "Success". |
||
55 | * |
||
56 | * @var string |
||
57 | */ |
||
58 | const BOOTSTRAP_SUCCESS = "success"; |
||
59 | |||
60 | /** |
||
61 | * Bootstrap "Warning". |
||
62 | * |
||
63 | * @var string |
||
64 | */ |
||
65 | const BOOTSTRAP_WARNING = "warning"; |
||
66 | |||
67 | /** |
||
68 | * Get the Bootstrap constants. |
||
69 | * |
||
70 | * @return array Returns the Bootstrap constants. |
||
71 | */ |
||
72 | public static function getBootstrapConstants() { |
||
82 | |||
83 | /** |
||
84 | * {@inheritdoc} |
||
85 | */ |
||
86 | public function getAssetsRelativeDirectory() { |
||
89 | |||
90 | } |
||
91 |