| 1 | <?php |
||
| 25 | class CoreBundle extends Bundle implements AssetsProviderInterface { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Core "Danger". |
||
| 29 | * |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | const CORE_DANGER = "danger"; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Core "Info". |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | const CORE_INFO = "info"; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Core "Success". |
||
| 43 | * |
||
| 44 | * @var string |
||
| 45 | */ |
||
| 46 | const CORE_SUCCESS = "success"; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Core "Warning". |
||
| 50 | * |
||
| 51 | * @var string |
||
| 52 | */ |
||
| 53 | const CORE_WARNING = "warning"; |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function build(ContainerBuilder $container) { |
||
| 61 | |||
| 62 | /** |
||
| 63 | * {@inheritdoc} |
||
| 64 | */ |
||
| 65 | public function getAssetsRelativeDirectory() { |
||
| 68 | |||
| 69 | } |
||
| 70 |