]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
Merge pull request #1560 from wallabag/v2-quickstart
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / EditEntryType.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Form\Type;
4
5 use Symfony\Component\Form\AbstractType;
6 use Symfony\Component\Form\FormBuilderInterface;
7 use Symfony\Component\OptionsResolver\OptionsResolver;
8
9 class EditEntryType extends AbstractType
10 {
11 public function buildForm(FormBuilderInterface $builder, array $options)
12 {
13 $builder
14 ->add('title', 'text', array('required' => true))
15 ->add('is_public', 'checkbox', array('required' => false))
16 // @todo: add autocomplete
17 // ->add('tags', 'entity', array(
18 // 'class' => 'Wallabag\CoreBundle\Entity\Tag',
19 // 'choice_translation_domain' => true,
20 // ))
21 ->add('save', 'submit')
22 ;
23 }
24
25 public function configureOptions(OptionsResolver $resolver)
26 {
27 $resolver->setDefaults(array(
28 'data_class' => 'Wallabag\CoreBundle\Entity\Entry',
29 ));
30 }
31
32 public function getName()
33 {
34 return 'entry';
35 }
36 }