Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function getStyleChoices(): array |
||
33 | { |
||
34 | $themeBundle = $this->kernel->getBundle('ZikulaDefaultTheme'); |
||
35 | $themeVarsPath = $themeBundle->getConfigPath() . '/variables.yaml'; |
||
|
|||
36 | $variableDefinitions = Yaml::parse(file_get_contents($themeVarsPath)); |
||
37 | |||
38 | return $variableDefinitions['theme_style']['options']['choices']; |
||
39 | } |
||
41 |