- public function buildForm(FormBuilderInterface $builder, array $options) {
- return $builder->add('mail', EmailType::class, array('attr' => array('placeholder' => 'Your mail address'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your mail')), new Email(array('message' => 'Your mail doesn\'t seems to be valid')))))
- #'RapsysUserBundle:Title'
- ->add('title', EntityType::class, array('class' => $options['class_title'], 'choice_label' => 'title', 'attr' => array('placeholder' => 'Your title'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your title')))))
- ->add('pseudonym', TextType::class, array('attr' => array('placeholder' => 'Your pseudonym'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your pseudonym')))))
- ->add('forename', TextType::class, array('attr' => array('placeholder' => 'Your forename'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your forename')))))
- ->add('surname', TextType::class, array('attr' => array('placeholder' => 'Your surname'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your surname')))))
- ->add('password', RepeatedType::class, array('type' => PasswordType::class, 'invalid_message' => 'The password and confirmation must match', 'first_options' => array('attr' => array('placeholder' => 'Your password'), 'label' => 'Password'), 'second_options' => array('attr' => array('placeholder' => 'Your password confirmation'), 'label' => 'Confirm password'), 'options' => array('constraints' => array(new NotBlank(array('message' => 'Please provide your password'))))))
- ->add('submit', SubmitType::class, array('label' => 'Send', 'attr' => array('class' => 'submit')));
+ public function buildForm(FormBuilderInterface $builder, array $options): void {
+ //Add extra mail field
+ if (!empty($options['mail'])) {
+ $builder->add('mail', EmailType::class, ['attr' => ['placeholder' => 'Your mail'], 'constraints' => [new NotBlank(['message' => 'Please provide your mail']), new Email(['message' => 'Your mail doesn\'t seems to be valid'])], 'required' => true]);
+ }
+
+ //Add extra password field
+ if (!empty($options['password'])) {
+ //Add password repeated field
+ if (!empty($options['password_repeated'])) {
+ $builder->add('password', RepeatedType::class, ['type' => PasswordType::class, 'invalid_message' => 'The password and confirmation must match', 'first_options' => ['attr' => ['placeholder' => 'Your password'], 'label' => 'Password'], 'second_options' => ['attr' => ['placeholder' => 'Your password confirmation'], 'label' => 'Confirm password'], 'options' => ['constraints' => [new NotBlank(['message' => 'Please provide your password'])]], 'required' => true]);
+ //Add password field
+ } else {
+ $builder->add('password', PasswordType::class, ['attr' => ['placeholder' => 'Your password'], 'constraints' => [new NotBlank(['message' => 'Please provide your password'])], 'required' => true]);
+ }
+ }
+
+ //Add extra civility field
+ if (!empty($options['civility'])) {
+ $builder->add('civility', EntityType::class, ['class' => $options['civility_class'], 'attr' => ['placeholder' => 'Your civility'], 'choice_translation_domain' => true, 'empty_data' => $options['civility_default'], 'required' => true]);
+ }
+
+ //Add extra forename field
+ if (!empty($options['forename'])) {
+ $builder->add('forename', TextType::class, ['attr' => ['placeholder' => 'Your forename']]);
+ }
+
+ //Add extra surname field
+ if (!empty($options['surname'])) {
+ $builder->add('surname', TextType::class, ['attr' => ['placeholder' => 'Your surname']]);
+ }
+
+ //Add extra active field
+ if (!empty($options['active'])) {
+ $builder->add('active', CheckboxType::class, ['attr' => ['placeholder' => 'Your active']]);
+ }
+
+ //Add extra enable field
+ if (!empty($options['enable'])) {
+ $builder->add('enable', CheckboxType::class, ['attr' => ['placeholder' => 'Your enable']]);
+ }
+
+ //Add submit
+ $builder->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]);
+
+ //Call parent
+ parent::buildForm($builder, $options);