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

46 lines
1.1 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\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class ConfigType extends AbstractType
{
private $themes = array();
/**
* @param array $themes Themes come from the LiipThemeBundle (liip_theme.themes)
*/
public function __construct($themes)
{
$this->themes = array_combine(
$themes,
array_map(function ($s) { return ucwords(strtolower(str_replace('-', ' ', $s))); }, $themes)
);
}
2015-02-16 20:28:49 +00:00
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('theme', 'choice', array('choices' => $this->themes))
2015-03-28 20:43:49 +00:00
->add('items_per_page')
2015-02-16 20:28:49 +00:00
->add('language')
->add('save', 'submit')
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Wallabag\CoreBundle\Entity\Config',
));
}
public function getName()
{
return 'config';
}
}