comment_form_box

Definition

comment_form_box($edit, $title = NULL)
modules/comment/comment.module, line 1413

Description

Theme the comment form box.

Parameters

$edit The form structure.

$title The form title.

Code

<?php
function comment_form_box($edit, $title = NULL) {
  return theme('box', $title, drupal_get_form('comment_form', $edit, $title));
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.