X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FConfigType.php;h=a139f2df0f076bd4ec5af45aa90f5d610f1260b6;hb=86719c63bf47686ca55020e6b0443344de36d45a;hp=a1e0ce47d6502c9ab7fee79c3c8081c6a95a5d4a;hpb=c0d9eba07f40a52bdfcfca3e7a926163b17d83ab;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..a139f2df 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -1,40 +1,56 @@ 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', ChoiceType::class, array( + 'choices' => array_flip($this->languages), + 'choices_as_values' => true, )) - ->add('items_per_page', 'text') - ->add('language') - ->add('save', 'submit') + ->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'; }