]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
Convert english translation file
[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\Extension\Core\Type\CheckboxType;
7 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
8 use Symfony\Component\Form\Extension\Core\Type\TextType;
9 use Symfony\Component\Form\FormBuilderInterface;
10 use Symfony\Component\OptionsResolver\OptionsResolver;
11
12 class EditEntryType extends AbstractType
13 {
14 public function buildForm(FormBuilderInterface $builder, array $options)
15 {
16 $builder
17 ->add('title', TextType::class, array(
18 'required' => true,
19 'label' => 'entry.edit.title_label',
20 ))
21 ->add('is_public', CheckboxType::class, array(
22 'required' => false,
23 'label' => 'entry.edit.is_public_label',
24 ))
25 ->add('url', TextType::class, array(
26 'disabled' => true,
27 'required' => false,
28 'label' => 'entry.edit.url_label',
29 ))
30 ->add('save', SubmitType::class, array(
31 'label' => 'entry.edit.save_label',
32 ))
33 ;
34 }
35
36 public function configureOptions(OptionsResolver $resolver)
37 {
38 $resolver->setDefaults(array(
39 'data_class' => 'Wallabag\CoreBundle\Entity\Entry',
40 ));
41 }
42
43 public function getBlockPrefix()
44 {
45 return 'entry';
46 }
47 }