You are here

function guestbook_form_comment in Guestbook 5

Same name and namespace in other branches
  1. 5.2 guestbook.module \guestbook_form_comment()
  2. 6.2 guestbook.module \guestbook_form_comment()
  3. 6 guestbook.module \guestbook_form_comment()
  4. 7.2 guestbook.module \guestbook_form_comment()
1 call to guestbook_form_comment()
theme_guestbook_entry_comment in ./guestbook.module

File

./guestbook.module, line 561

Code

function guestbook_form_comment($uid, $entry) {
  $output = drupal_get_form('guestbook_form_comment_form', $uid, $entry);
  return $output;
}