wallabag/src/Wallabag/CoreBundle/Form/Type/ConfigType.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2015-02-16 20:28:49 +00:00
<?php
2015-05-30 11:52:26 +00:00
2015-02-16 20:28:49 +00:00
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;
2015-02-16 20:28:49 +00:00
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
2015-02-16 20:28:49 +00:00
class ConfigType extends AbstractType
{
private $themes = array();
2015-10-01 14:28:38 +00:00
private $languages = array();
/**
2015-10-01 14:28:38 +00:00
* @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
*/
2015-10-01 14:28:38 +00:00
public function __construct($themes, $languages)
{
$this->themes = array_combine(
$themes,
array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
);
2015-10-01 14:28:38 +00:00
$this->languages = $languages;
}
2015-02-16 20:28:49 +00:00
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('theme', ChoiceType::class, array(
'choices' => array_flip($this->themes),
'choices_as_values' => true,
))
2015-03-28 20:43:49 +00:00
->add('items_per_page')
->add('language', ChoiceType::class, array(
2015-10-01 14:28:38 +00:00
'choices' => $this->languages,
))
->add('save', SubmitType::class)
2015-02-16 20:28:49 +00:00
;
}
public function configureOptions(OptionsResolver $resolver)
2015-02-16 20:28:49 +00:00
{
$resolver->setDefaults(array(
'data_class' => 'Wallabag\CoreBundle\Entity\Config',
));
}
public function getBlockPrefix()
2015-02-16 20:28:49 +00:00
{
return 'config';
}
}