X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FConfigType.php;h=7e3b9dd4f93ce52c0ba523605b03b0f86aef0c0f;hb=6fb06904ecde15b1b07d0a2af945338b416cf0e2;hp=74e2a6f1463aca4ba7025028f5128ab898333631;hpb=4d85d7e9ba676bd5ac3428976ce9227f460eb542;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index 74e2a6f1..7e3b9dd4 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -1,40 +1,82 @@ 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('items_per_page') - ->add('language') - ->add('save', 'submit') + ->add('theme', ChoiceType::class, [ + 'choices' => array_flip($this->themes), + '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('action_mark_as_read', ChoiceType::class, [ + 'label' => 'config.form_settings.action_mark_as_read.label', + 'choices' => [ + 'config.form_settings.action_mark_as_read.redirect_homepage' => Config::REDIRECT_TO_HOMEPAGE, + 'config.form_settings.action_mark_as_read.redirect_current_page' => Config::REDIRECT_TO_CURRENT_PAGE, + ], + ]) + ->add('language', ChoiceType::class, [ + 'choices' => array_flip($this->languages), + 'label' => 'config.form_settings.language_label', + ]) + ->add('pocket_consumer_key', null, [ + 'label' => 'config.form_settings.pocket_consumer_key_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'; }