From c89d35e851d26b78f89bd7ece5e3eaa109c8cac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Thu, 1 Oct 2015 16:28:38 +0200 Subject: Language selection on config screen --- src/Wallabag/CoreBundle/Form/Type/ConfigType.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/Wallabag/CoreBundle/Form/Type/ConfigType.php') diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index 49b05b80..1f0ad89d 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php @@ -9,16 +9,20 @@ use Symfony\Component\OptionsResolver\OptionsResolver; class ConfigType extends AbstractType { private $themes = array(); + private $languages = array(); /** - * @param array $themes Themes come from the LiipThemeBundle (liip_theme.themes) + * @param array $themes Themes come from the LiipThemeBundle (liip_theme.themes) + * @param array $languages Languages come from configuration, array just code language as key and label as value */ - public function __construct($themes) + public function __construct($themes, $languages) { $this->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) @@ -29,7 +33,9 @@ class ConfigType extends AbstractType 'choices_as_values' => true, )) ->add('items_per_page') - ->add('language') + ->add('language', 'choice', array( + 'choices' => $this->languages, + )) ->add('save', 'submit') ; } -- cgit v1.2.3