Jump to content

Extra champ de texte sur pages CMS (1.7.6.5)


Recommended Posts

Bonjour,

 

Je cherche des solutions, tuyaux ou tutos pour m'aider à mettre en place un champ de texte supplémentaire sur les pages CMS sur 1.7.6.5. Surtout pour la partie d'ajout du champ dans l'admin.

 

Merci !

Link to comment
Share on other sites

J'ai rien dit, ça marche comme ça :
 

    /** @var FormBuilder $form_builder */
        $form_builder = $params['form_builder'];
        $form_builder
            ->add(
                'description',
                \Symfony\Component\Form\Extension\Core\Type\TextType::class,
                [
                    'data' => 'TEST',
                    'label' => 'TEST'
                ]
            );

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...