]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Form/Type/ConfigType.php
Added setting to have a personal reading time
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / ConfigType.php
index 74e2a6f1463aca4ba7025028f5128ab898333631..1218a933106eef666df37bf018c05bf04df332ab 100644 (file)
@@ -1,40 +1,64 @@
 <?php
+
 namespace Wallabag\CoreBundle\Form\Type;
 
 use Symfony\Component\Form\AbstractType;
+use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
+use Symfony\Component\Form\Extension\Core\Type\RangeType;
+use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolverInterface;
+use Symfony\Component\OptionsResolver\OptionsResolver;
 
 class ConfigType extends AbstractType
 {
+    private $themes = array();
+    private $languages = array();
+
+    /**
+     * @param array $themes    Themes come from the LiipThemeBundle (liip_theme.themes)
+     * @param array $languages Languages come from configuration, array just code language as key and label as value
+     */
+    public function __construct($themes, $languages)
+    {
+        $this->themes = array_combine(
+            $themes,
+            array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
+        );
+
+        $this->languages = $languages;
+    }
+
     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('theme', ChoiceType::class, array(
+                'choices' => array_flip($this->themes),
+                'choices_as_values' => true,
             ))
             ->add('items_per_page')
-            ->add('language')
-            ->add('save', 'submit')
+            ->add('reading_speed', RangeType::class, array(
+                'attr' => array(
+                    'min' => 0.5,
+                    'max' => 2,
+                    'step' => 0.5,
+                ),
+            ))
+            ->add('language', ChoiceType::class, array(
+                'choices' => array_flip($this->languages),
+                'choices_as_values' => true,
+            ))
+            ->add('save', SubmitType::class)
         ;
     }
 
-    public function setDefaultOptions(OptionsResolverInterface $resolver)
+    public function configureOptions(OptionsResolver $resolver)
     {
         $resolver->setDefaults(array(
             'data_class' => 'Wallabag\CoreBundle\Entity\Config',
         ));
     }
 
-    public function getName()
+    public function getBlockPrefix()
     {
         return 'config';
     }