| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_node_form($form) |
Present a node submission form.
modules/
<?php
function theme_node_form($form) {
$output = "\n<div class=\"node-form\">\n";
$output .= " <div class=\"standard\">\n";
$output .= drupal_render_children($form);
$output .= " </div>\n";
$output .= "</div>\n";
return $output;
}
?>
Kommentare
Kommentar hinzufügen