| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | function getTheme() |
||
| 10 | { |
||
| 11 | return [ |
||
| 12 | 'label' => __('Theme', 'flynt'), |
||
| 13 | 'name' => 'theme', |
||
| 14 | 'type' => 'select', |
||
| 15 | 'allow_null' => 0, |
||
| 16 | 'multiple' => 0, |
||
| 17 | 'ui' => 0, |
||
| 18 | 'ajax' => 0, |
||
| 19 | 'choices' => [ |
||
| 20 | '' => __('(none)', 'flynt'), |
||
| 21 | 'themeLight' => __('Light', 'flynt'), |
||
| 22 | 'themeDark' => __('Dark', 'flynt'), |
||
| 23 | 'themeHero' => __('Hero', 'flynt'), |
||
| 24 | ] |
||
| 38 |