X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FConfigType.php;h=a139f2df0f076bd4ec5af45aa90f5d610f1260b6;hb=5c895a7fd15822856fb407910264c5d95e1e223c;hp=1f0ad89dfad578ffeac5c5067a0748da61dfe3fd;hpb=c89d35e851d26b78f89bd7ece5e3eaa109c8cac0;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index 1f0ad89d..a139f2df 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -3,6 +3,8 @@ 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\SubmitType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; @@ -28,15 +30,16 @@ class ConfigType extends AbstractType 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, )) ->add('items_per_page') - ->add('language', 'choice', array( - 'choices' => $this->languages, + ->add('language', ChoiceType::class, array( + 'choices' => array_flip($this->languages), + 'choices_as_values' => true, )) - ->add('save', 'submit') + ->add('save', SubmitType::class) ; } @@ -47,7 +50,7 @@ class ConfigType extends AbstractType )); } - public function getName() + public function getBlockPrefix() { return 'config'; }