]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Form/Type/ConfigType.php
88082a040c0d752544b2dd5c4a91151baae7564e
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / ConfigType.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Form\Type;
4
5 use Symfony\Component\Form\AbstractType;
6 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
7 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
8 use Symfony\Component\Form\FormBuilderInterface;
9 use Symfony\Component\OptionsResolver\OptionsResolver;
10
11 class ConfigType extends AbstractType
12 {
13 private $themes = array();
14 private $languages = array();
15
16 /**
17 * @param array $themes Themes come from the LiipThemeBundle (liip_theme.themes)
18 * @param array $languages Languages come from configuration, array just code language as key and label as value
19 */
20 public function __construct($themes, $languages)
21 {
22 $this->themes = array_combine(
23 $themes,
24 array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
25 );
26
27 $this->languages = $languages;
28 }
29
30 public function buildForm(FormBuilderInterface $builder, array $options)
31 {
32 $builder
33 ->add('theme', ChoiceType::class, array(
34 'choices' => array_flip($this->themes),
35 'choices_as_values' => true,
36 ))
37 ->add('items_per_page')
38 ->add('language', ChoiceType::class, array(
39 'choices' => $this->languages,
40 ))
41 ->add('save', SubmitType::class)
42 ;
43 }
44
45 public function configureOptions(OptionsResolver $resolver)
46 {
47 $resolver->setDefaults(array(
48 'data_class' => 'Wallabag\CoreBundle\Entity\Config',
49 ));
50 }
51
52 public function getBlockPrefix()
53 {
54 return 'config';
55 }
56 }