Existe-t-il un moyen d'afficher un message d'aide à côté d'un champ de formulaire comme ci-dessous?
FooForm.php
$form['field_foo'] = array(
'#type' => 'textfield',
'#title' => t('Foo'),
'#required' => true,
'#default_value' => 'foo',
'#help_text' => 'Help text for Foo field',
);
Utilisez l'attribut # description.
$form['field_foo'] = array(
'#type' => 'textfield',
'#title' => t('Foo'),
'#required' => true,
'#default_value' => 'foo',
'#description' => t('Help text for Foo field'),
);