cedib Posted May 29, 2020 Share Posted May 29, 2020 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 More sharing options...
BenAg Posted May 30, 2020 Share Posted May 30, 2020 Bonjour, Peut-être en se hookant comme ceci : actionCmsPageFormBuilderModifier 1 Link to comment Share on other sites More sharing options...
cedib Posted May 30, 2020 Author Share Posted May 30, 2020 @BenAg, c'est exactement le début qu'il me fallait. Merci ! Link to comment Share on other sites More sharing options...
BenAg Posted June 1, 2020 Share Posted June 1, 2020 @cedib As-tu réussi ? Moi je me hook bien, j'ajoute mon champ, mais il n’apparaît pas Link to comment Share on other sites More sharing options...
BenAg Posted June 1, 2020 Share Posted June 1, 2020 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 More sharing options...
cedib Posted June 1, 2020 Author Share Posted June 1, 2020 Oui, dans les grandes lignes, c'est ce que j'ai fait aussi. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now