Le formulaire de contact peut-être personnalisé pour l’ensemble des contacts ou par catégorie

Initialisation du nouveau Formulaire

Fichier : override/src/Form/EzContactCustom.php ou override/src/Form/EzContactCustomCategory1.php EzContactCustomCategory1.php correspond à la catégorie N°1

Exemple de personnalisation pour la catégorie Fournisseur :

<?php

namespace Override\\Form;

use App\\Entity\\EzContact;
use App\\Entity\\EzContactCategory;
use App\\Entity\\EzModeTransmission;
use App\\Entity\\EzModePaiement;
use App\\Form\\EzContactType; // à vérifier

use Symfony\\Component\\Form\\AbstractType;
use Symfony\\Component\\Form\\FormBuilderInterface;

use Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType;
use Symfony\\Component\\Form\\Extension\\Core\\Type\\TextareaType;
use Symfony\\Component\\Form\\Extension\\Core\\Type\\EmailType;
use Symfony\\Component\\Form\\Extension\\Core\\Type\\ChoiceType;
use Symfony\\Component\\Form\\Extension\\Core\\Type\\SubmitType;
use Symfony\\Component\\OptionsResolver\\OptionsResolver;
use Symfony\\Bridge\\Doctrine\\Form\\Type\\EntityType;
use Symfony\\Component\\Validator\\Constraints\\Length;
use Symfony\\Component\\Validator\\Constraints\\Email;
use Symfony\\Component\\Validator\\Constraints\\Url;
use App\\Repository\\EzContactRepository;
use App\\Repository\\EzContactCategoryRepository;
use App\\Repository\\EzModeTransmissionRepository;
use App\\Repository\\EzModePauementRepository;
use Symfony\\Component\\DependencyInjection\\Attribute\\AutoconfigureTag;
use Doctrine\\ORM\\EntityManagerInterface;

class EzContactCustomCategory1 extends EzContactType
{
    private $doctrine;
    private $entityManager;
    private $categories;

    public function _construct(EntityManagerInterface $entityManager)
    {
        $this->entityManager = $entityManager;
        $this->categories = [];
    }

    public function buildForm(FormBuilderInterface $builder, array $options): void
    {
        $contact = $builder->getData();
        $entityManager = $options['entity_manager'];

        // --- Get categories
        $conn = $entityManager->getConnection();
        $query = "SELECT `EZ_CONTACT_CATEGORY_ID`, `EZ_CONTACT_CATEGORY_LIB` FROM `ez_contact_category` ORDER BY `EZ_CONTACT_CATEGORY_ID`";
        $stmt = $conn->executeQuery($query);
        foreach ($stmt->fetchAllAssociative() as $row) {
            $this->categories[$row["EZ_CONTACT_CATEGORY_LIB"]] = $row["EZ_CONTACT_CATEGORY_ID"];
        }

        $builder
            ->add('ez_contact_nom', TextType::class, [
                'label' => 'Nom *',
                'required' => true,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1.5em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 255,
                    'minMessage' => 'Le nom doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le nom doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_prenom', TextType::class, [
                'label' => 'Prénom',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1.5em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 255,
                    'minMessage' => 'Le prénom doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le prénom doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_mobile', TextType::class, [
                'label' => 'Numéro de mobile',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-4',
                    'style' => 'margin-bottom: 1em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 50,
                    'minMessage' => 'Le numéro de mobile doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le numéro de mobile doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_fixe', TextType::class, [
                'label' => 'Numéro professionnel',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-4',
                    'style' => 'margin-bottom: 1em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 50,
                    'minMessage' => 'Le téléphone doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le téléphone doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_fax', TextType::class, [
                'label' => 'Numéro de fax',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-4',
                    'style' => 'margin-bottom: 1em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 50,
                    'minMessage' => 'Le fax doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le fax doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_email', EmailType::class, [
                'required' => false,
                'label' => 'Email',
                'attr' => [
                    'placeholder' => 'Email'
                ],
                'row_attr' => ['class' => 'col-md-6', 'style' => 'margin-bottom: 1em;'],
                'constraints' => [new Email([
                    'message' => 'L\\'email {{ value }} n\\'est pas un email valide.',
                ])],
            ])
            ->add('ez_contact_website', TextType::class, [
                'required' => false,
                'label' => 'Site Web',
                'attr' => [
                    'placeholder' => 'https://...'
                ],
                'row_attr' => ['class' => 'col-md-6', 'style' => 'margin-bottom: 1em;'],
                'constraints' => [new Url([
                    'message' => 'L\\'url {{ value }} n\\'est pas une url valide.',
                ])],
            ])
            ->add('ez_contact_adresse1', TextType::class, [
                'label' => 'Adresse',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1em;',
                ],
            ])
            ->add('ez_contact_adresse2', TextType::class, [
                'label' => 'Complément d\\'adresse',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1em;',
                ],
            ])
            ->add('ez_contact_codepostal', TextType::class, [
                'label' => 'Code postal',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1.5em;',
                ],
            ])
            ->add('ez_contact_ville', TextType::class, [
                'label' => 'Ville',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1.5em;',
                ],
            ])
            ->add('ez_contact_pays', TextType::class, [
                'label' => 'Pays',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1.5em;',
                ],
            ])
            ->add('ez_contact_categoryId', EntityType::class, [
                'class' => EzContactCategory::class,
                'choice_label' => 'lib',
                'required' => true,
                'label' => 'Catégorie',
                'row_attr' => [
                    'class' => 'col-md-12', 'style' => 'margin-bottom: 1em;',
                ],
            ])
            ->add('ez_contact_refinterne', TextType::class, [
                'label' => 'Référence interne',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 255,
                    'minMessage' => 'La référence interne doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'La référence interne doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_siret', TextType::class, [
                'label' => 'Numéro SIRET (dans le cas d\\'une société)',
                'required' => false,
                'row_attr' => [
                    'class' => 'col-md-6',
                    'style' => 'margin-bottom: 1em;',
                ],
                'constraints' => [new Length([
                    'min' => 1,
                    'max' => 255,
                    'minMessage' => 'Le siret doit comporter au minimum {{ limit }} caractères',
                    'maxMessage' => 'Le siret doit comporter au maximum {{ limit }} caractères',
                ])],
            ])
            ->add('ez_contact_desc', TextareaType::class, ['label' => 'Description', 'required' => false, 'row_attr' => ['style' => 'padding-bottom: 2em; margin-bottom: 1.5em;']])
            ->add('Sauvegarder', SubmitType::class, ['label' => 'Sauvegarder', 'row_attr' => [
                'style' => 'display: none;',
            ]]);
    }

    public function configureOptions(OptionsResolver $resolver): void
    {
        $resolver->setDefaults([
            'data_class' => EzContact::class,
            'require_nom' => true,
            'allow_extra_fields' => true
        ]);

        $resolver->setRequired('entity_manager');

        $resolver->setAllowedTypes('require_nom', 'bool');
    }
}

Création du template associé au nouveau formulaire

le nom du template doit s’appeler ainsi : override/templates/contact/_editCustom.html.twig ou override/templates/contact/_editCustomCategory1.html.twig (1 est l’id de la categorie)

{{ form_start(form, { attr: { id: 'form_contact_edit', class: 'row' } }) }}
  {{ form_row(form.ez_contact_nom) }}
  {{ form_row(form.ez_contact_prenom) }}
  {{ form_row(form.ez_contact_categoryId ) }}
  <div class="mt-2 mb-3" style="background-color: #1cb2bf; color: white; font-size: 13px; padding-top: 6px; padding-bottom: 5px; text-align: center;">Localisation</div>
  {{ form_row(form.ez_contact_codepostal) }}
  {{ form_row(form.ez_contact_ville) }}
  {{ form_row(form.ez_contact_adresse1) }}
  {{ form_row(form.ez_contact_adresse2) }}
  {{ form_row(form.ez_contact_pays) }}
  <div class="mt-2 mb-3" style="background-color: #1cb2bf; color: white; font-size: 13px; padding-top: 6px; padding-bottom: 5px; text-align: center;">Autres informations</div>
{{ form_end(form) }}

Exemple de configuration de champs

Champ custom de type TEXT

->add('ez_contact_customtext01', TextType::class, [
    'label' => 'Pointure de chaussures',
    'required' => false,
    'row_attr' => [
        'class' => 'col-md-6',
        'style' => 'margin-bottom: 1em;',
    ],
])

Champ custom de type LIST avec choices fixes

->add('ez_contact_customnum01', ChoiceType::class, [
    'label' => 'Taille pantalon',
    'placeholder' => 'Choisissez une taille',
    'choices' => [
        'XS / 34' => 1,
        'S / 36' => 2,
        'S / 38' => 3,
        'M / 40' => 4,
        'M / 42' => 5,
        'L / 44' => 6,
        'L / 46' => 7,
        'XL / 48' => 8,
        'XL / 50' => 9,
        'XXL / 52' => 10,
    ],
    'choice_attr' => [
        'XS / 34' => ['data-color' => 'Red'],
    ],
    'required' => true,
    'row_attr' => [
        'class' => 'col-md-6', 'style' => 'margin-bottom: 1em;',
    ],
    'help' => 'The ZIP/Postal code for your credit card\\'s billing address.',
])

Champ custom de type LIST avec choices from table

// --- Get categories
$conn = $entityManager->getConnection();
$query = "SELECT * FROM taille";
$stmt = $conn->executeQuery($query);
foreach ($stmt->fetchAllAssociative() as $row) {
    $this->tailles[$row["TAILLE_ID"]] = $row["TAILLE_LIB"];
}

->add('ez_contact_customnum01', ChoiceType::class, [
    'label' => 'Taille Polo / Chemise / Veste',
    'placeholder' => 'Choisissez une taille',
    'choices' => $this->tailles,
    'empty_data' => null,
    'required' => true,
    'row_attr' => [
        'class' => 'col-md-6', 'style' => 'margin-bottom: 1em;',
    ],
]);

Champs disponibles pour stocker vos datas

**Champs numériques**
ez_contact_customnum01
ez_contact_customnum01
ez_contact_customnum01
ez_contact_customnum01
ez_contact_customnum01

**Champs de type texte varchar(255)**
ez_contact_customtext01
ez_contact_customtext02
ez_contact_customtext03
ez_contact_customtext04
ez_contact_customtext05