X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FConfigType.php;h=b30b4706af4a750ae7548f413a5a4988b0392661;hb=7eccbda99f16dc39ee01a0c81ab88293e9b268fd;hp=a1e0ce47d6502c9ab7fee79c3c8081c6a95a5d4a;hpb=0e7971d8354b0923d2e8f38690b9fe46e695dd93;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index a1e0ce47..b30b4706 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -1,40 +1,71 @@ 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( + ->add('theme', ChoiceType::class, array( + 'choices' => array_flip($this->themes), + 'choices_as_values' => true, + 'label' => 'config.form_settings.theme_label', + )) + ->add('items_per_page', null, array( + 'label' => 'config.form_settings.items_per_page_label', + )) + ->add('reading_speed', ChoiceType::class, array( + 'label' => 'config.form_settings.reading_speed.label', 'choices' => array( - 'baggy' => 'Baggy', - 'courgette' => 'Courgette', - 'dark' => 'Dark', - 'default' => 'Default', - 'dmagenta' => 'Dmagenta', - 'solarized' => 'Solarized', - 'solarized_dark' => 'Solarized Dark', + 'config.form_settings.reading_speed.100_word' => '0.5', + 'config.form_settings.reading_speed.200_word' => '1', + 'config.form_settings.reading_speed.300_word' => '1.5', + 'config.form_settings.reading_speed.400_word' => '2', ), )) - ->add('items_per_page', 'text') - ->add('language') - ->add('save', 'submit') + ->add('language', ChoiceType::class, array( + 'choices' => array_flip($this->languages), + 'choices_as_values' => true, + 'label' => 'config.form_settings.language_label', + )) + ->add('save', SubmitType::class, array( + 'label' => 'config.form.save', + )) ; } - 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'; }