X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FConfigType.php;h=4cf22200fa753ba06ab113505fe5fa7e77a59d51;hb=f2e5fdc3666a2a6525b4202ab48df05efeebaf5c;hp=0c8706e2ae592c95f99acea375316313ddb4c64e;hpb=32da2a70ef278bd42f66eb82c3fbf1905a417b87;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index 0c8706e2..4cf22200 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -1,43 +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('choices' => $this->themes)) - ->add('items_per_page', 'text') - ->add('language') - ->add('save', 'submit') + ->add('theme', ChoiceType::class, [ + 'choices' => array_flip($this->themes), + 'choices_as_values' => true, + 'label' => 'config.form_settings.theme_label', + ]) + ->add('items_per_page', null, [ + 'label' => 'config.form_settings.items_per_page_label', + ]) + ->add('reading_speed', ChoiceType::class, [ + 'label' => 'config.form_settings.reading_speed.label', + 'choices' => [ + '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('language', ChoiceType::class, [ + 'choices' => array_flip($this->languages), + 'choices_as_values' => true, + 'label' => 'config.form_settings.language_label', + ]) + ->add('save', SubmitType::class, [ + 'label' => 'config.form.save', + ]) ; } - public function setDefaultOptions(OptionsResolverInterface $resolver) + public function configureOptions(OptionsResolver $resolver) { - $resolver->setDefaults(array( + $resolver->setDefaults([ 'data_class' => 'Wallabag\CoreBundle\Entity\Config', - )); + ]); } - public function getName() + public function getBlockPrefix() { return 'config'; }