deblan.tv/src/Deblan/Bundle/BlogBundle/Form/Type/CategoryFilterType.php
2015-11-25 18:28:47 +01:00

44 lines
1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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(
'required' => false,
'label' => 'Titre',
)
);
$builder->add(
'Active',
'choice',
array(
'required' => false,
'choices' => array(
'bool.both' => 'Anyway',
'bool.true' => 'True',
'bool.false' => 'False',
)
)
);
}
}