deblan.tv/vendor/trinity/src/Trinity/Bundle/ContactBundle/Form/Type/ContactFilterType.php

55 lines
883 B
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 Trinity\Bundle\ContactBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class ContactFilterType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Trinity\Bundle\ContactBundle\Model\Contact',
'name' => 'contact',
'csrf_protection' => false,
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'name',
'text',
array(
'required' => false,
)
);
$builder->add(
'firm',
'text',
array(
'required' => false,
)
);
$builder->add(
'phone',
'text',
array(
'required' => false,
)
);
$builder->add(
'email',
'email',
array(
'required' => false,
)
);
}
}