aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
blob: 0cb29881834db98ebe0ffee1b20aca29f28e9696 (plain) (tree)
1
2
3
4
5
6
7
8




                                        


                                                            







                                                                            

                                                                               




                                                               
                                            









                                                               
                                    



                       
<?php

namespace Wallabag\CoreBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

class EditEntryType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('title', TextType::class, array('required' => true))
            ->add('is_public', CheckboxType::class, array('required' => false))
            // @todo: add autocomplete
            // ->add('tags', 'entity', array(
            //     'class' => 'Wallabag\CoreBundle\Entity\Tag',
            //     'choice_translation_domain' => true,
            // ))
            ->add('save', SubmitType::class)
        ;
    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'Wallabag\CoreBundle\Entity\Entry',
        ));
    }

    public function getBlockPrefix()
    {
        return 'entry';
    }
}