Outils pour utilisateurs

Outils du site


drupal9:modules:hooks

Ceci est une ancienne révision du document !


Hooks

Implementation de hook_form_alter pour modifier le texte d'un bouton dans le formulaire de commentaire.

mymodule/mymodule.module
<?php
 
function mymodule_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
  if($form_id == 'comment_comment_form') {
    $form['actions']['submit']['#value'] = t('Poster mon commentaire');
  }
}
drupal9/modules/hooks.1613503828.txt.gz · Dernière modification: 2021/02/16 19:30 par marclebrun