]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Acme/DemoBundle/Form/ContactType.php
symfony is there
[github/wallabag/wallabag.git] / src / Acme / DemoBundle / Form / ContactType.php
1 <?php
2
3 namespace Acme\DemoBundle\Form;
4
5 use Symfony\Component\Form\AbstractType;
6 use Symfony\Component\Form\FormBuilderInterface;
7
8 class ContactType extends AbstractType
9 {
10 public function buildForm(FormBuilderInterface $builder, array $options)
11 {
12 $builder->add('email', 'email');
13 $builder->add('message', 'textarea');
14 }
15
16 public function getName()
17 {
18 return 'contact';
19 }
20 }