<?php

namespace AppBundle\Form\Evento;

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

class TitulosSeccionesType extends AbstractType
{
    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('agenda', TextType::class, [
                'label' => 'Sección "Agenda"'
            ])
            ->add('programa', TextType::class, [
                'label' => 'Sección "Programa"'
            ])
            ->add('comite', TextType::class, [
                'label' => 'Sección "Comite"'
            ])
            ->add('speakers', TextType::class, [
                'label' => 'Sección "Speakers"'
            ])
            ->add('partners', TextType::class, [
                'label' => 'Sección "Partners"'
            ])
            ->add('empresas', TextType::class, [
                'label' => 'Sección "Empresas"'
            ])
            ->add('sede', TextType::class, [
                'label' => 'Sección "Sede"'
            ]);
    }
    
    
    /**
     * {@inheritdoc}
     */
    public function getBlockPrefix()
    {
        return 'appbundle_edit_evento_titulos_secciones';
    }


}

