function guestbook_theme in Guestbook 7.2
Same name and namespace in other branches
- 6.2 guestbook.module \guestbook_theme()
- 6 guestbook.module \guestbook_theme()
Implementation of hook_theme()
File
- ./
guestbook.module, line 757
Code
function guestbook_theme() {
return array(
'guestbook_form_entry_form' => array(
'render element' => 'form',
),
'guestbook' => array(
'variables' => array(
'uid' => NULL,
'entries' => array(),
'comment_entry' => NULL,
'limit' => NULL,
),
),
'guestbook_entry' => array(
'variables' => array(
'uid' => NULL,
'entry' => NULL,
'comment_entry' => NULL,
'zebra' => NULL,
'confirm_delete' => FALSE,
),
),
'guestbook_user_picture' => array(
'render element' => 'form',
),
'guestbook_entry_comment' => array(
'variables' => array(
'uid' => NULL,
'entry' => NULL,
'comment_entry' => NULL,
),
),
'guestbook_list' => array(
'variables' => array(
'guestbooks' => array(),
'header' => array(),
'limit' => 40,
),
),
);
}