deblan.tv/src/Deblan/Bundle/BlogBundle/Form/Type/CategoryFilterType.php

44 lines
1 KiB
PHP
Raw Normal View History

2015-03-02 21:57:49 +01:00
<?php
namespace Deblan\Bundle\BlogBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class CategoryFilterType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Deblan\Bundle\BlogBundle\Model\Category',
'name' => 'category',
'csrf_protection' => false,
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'Title',
'text',
array(
2015-11-25 18:28:47 +01:00
'required' => false,
'label' => 'Titre',
2015-03-02 21:57:49 +01:00
)
);
$builder->add(
'Active',
'choice',
array(
'required' => false,
'choices' => array(
'bool.both' => 'Anyway',
'bool.true' => 'True',
'bool.false' => 'False',
)
)
);
}
}