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