J'ai créé mon propre module appelé "cssswitch". J'essaie de créer ma propre mise en page html pour afficher la partie formulaire d'administration du module. Je comprends comment utiliser la fonction hook_form_alter() pour modifier les éléments du formulaire, mais j'ai besoin de créer toute la mise en page du formulaire pour faire apparaître certains champs les uns à côté des autres. Il semble que j'ai besoin de quelque chose de similaire à la façon dont j'ai affiché la vue frontale du nœud avec theme_cssswitch_display(), mais pour la partie admin du nœud.
function cssswitch_form_alter(&$form, $form_state, $form_id) {
switch($form_id) {
case 'cssswitch_node_form':
$form['hour_start']['#prefix'] = '<div class="start-box">';
$form['ampm_start']['#suffix'] = '</div>';
$form['ampm_start']['#attributes'] = array("style" => "border-width:2px;");
break;
}
}
function cssswitch_theme() {
return array(
'cssswitch_display' => array(
'arguments' => array('node'),
),
);
}
// to display the view of the node
function theme_cssswitch_display($node) {
$output = '<div class="cssswitch-cssfilename">Filename: '.
check_plain($node->cssfilename). '</div>';
$output .= '<div class="cssswitch-time_start">Start: '.
check_plain($node->hour_start). ':'.check_plain($node->minute_start).' '.check_plain($node->ampm_start).'</div>';
$output .= '<div class="cssswitch-time_end">End: '.
check_plain($node->hour_end). ':'.check_plain($node->minute_end).' '.check_plain($node->ampm_end).'</div>';
return $output;
}
Merci pour toute aide