]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Form/Type/ConfigType.php
Add tests
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / ConfigType.php
index a1e0ce47d6502c9ab7fee79c3c8081c6a95a5d4a..0fcf020add5ef5495f1a341ba52e03ca3fe17992 100644 (file)
@@ -7,21 +7,24 @@ use Symfony\Component\OptionsResolver\OptionsResolverInterface;
 
 class ConfigType extends AbstractType
 {
+    private $themes = array();
+
+    /**
+     * @param array $themes Themes come from the LiipThemeBundle (liip_theme.themes)
+     */
+    public function __construct($themes)
+    {
+        $this->themes = array_combine(
+            $themes,
+            array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
+        );
+    }
+
     public function buildForm(FormBuilderInterface $builder, array $options)
     {
         $builder
-            ->add('theme', 'choice', array(
-                'choices' => array(
-                    'baggy' => 'Baggy',
-                    'courgette' => 'Courgette',
-                    'dark' => 'Dark',
-                    'default' => 'Default',
-                    'dmagenta' => 'Dmagenta',
-                    'solarized' => 'Solarized',
-                    'solarized_dark' => 'Solarized Dark',
-                ),
-            ))
-            ->add('items_per_page', 'text')
+            ->add('theme', 'choice', array('choices' => $this->themes))
+            ->add('items_per_page')
             ->add('language')
             ->add('save', 'submit')
         ;