src/Form/ContactType.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use Symfony\Component\Form\AbstractType;
  4. use Symfony\Component\Form\FormBuilderInterface;
  5. use Symfony\Component\Validator\Constraints\NotBlank;
  6. use Symfony\Component\Validator\Constraints\Email;
  7. use Symfony\Component\Validator\Constraints\Collection;
  8. use Symfony\Component\OptionsResolver\OptionsResolver;
  9. use Symfony\Component\Form\Extension\Core\Type\TextType;
  10. use Symfony\Component\Form\Extension\Core\Type\SubmitType;
  11. class ContactType extends AbstractType
  12. {
  13.     public function buildForm(FormBuilderInterface $builder, array $options)
  14.     {
  15. //        $builder->add('email', 'text',array('label'=>'Ingrese el email'));
  16.         $builder->add('usuario'TextType::class,array('label'=>'Ingrese el Usuario','required'=>true,'attr' => array(
  17.                         "maxlength" => "20")));
  18.         
  19.         $builder->add('clave', \Symfony\Component\Form\Extension\Core\Type\PasswordType::class,array('label'=>'Ingrese la clave','required'=>true,'attr' => array(
  20.                         "maxlength" => "30")));
  21. //        $builder->add('message', 'text',array('label'=>'Ingrese un Mesaje'));
  22.    
  23.     }
  24.    
  25.     public function getDefaultOptions(array $options)
  26.     {
  27.         $collectionConstraint = new Collection(array(
  28.             //'email' => new Email(),
  29.             'usuario' => new NotBlank(),
  30.             'clave' => new NotBlank(),
  31.             //'message' => new NotBlank(),
  32.         ));
  33.         
  34.         $options['validation_constraint'] = $collectionConstraint;
  35.         return $options;
  36.     }
  37.     
  38.    
  39.     public function getName()
  40.     {
  41.         return 'contact';
  42.     }
  43. }