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