1 | <?php |
||
21 | class ExtensionService implements SingletonInterface |
||
22 | { |
||
23 | use SelfInstantiateTrait; |
||
24 | |||
25 | const EXTENSION_KEY = 'formz'; |
||
26 | |||
27 | /** |
||
28 | * @var array |
||
29 | */ |
||
30 | private $extensionConfiguration; |
||
31 | |||
32 | /** |
||
33 | * Return the wanted extension configuration. |
||
34 | * |
||
35 | * @param string $configurationName |
||
36 | * @return mixed |
||
37 | */ |
||
38 | public function getExtensionConfiguration($configurationName) |
||
51 | |||
52 | /** |
||
53 | * @return array |
||
54 | */ |
||
55 | protected function getFullExtensionConfiguration() |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getExtensionRelativePath() |
||
75 | |||
76 | /** |
||
77 | * @return bool |
||
78 | */ |
||
79 | public function isInDebugMode() |
||
83 | |||
84 | /** |
||
85 | * @return string |
||
86 | */ |
||
87 | public function getExtensionKey() |
||
91 | } |
||
92 |