| Versionen | |
|---|---|
| drupal6 | comment_form_box($edit, $title = NULL) |
Theme the comment form box.
$edit The form structure.
$title The form title.
modules/
<?php
function comment_form_box($edit, $title = NULL) {
return theme('box', $title, drupal_get_form('comment_form', $edit, $title));
}
?>
Kommentare
Kommentar hinzufügen