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