You are here

function guestbook_theme in Guestbook 6

Same name and namespace in other branches
  1. 6.2 guestbook.module \guestbook_theme()
  2. 7.2 guestbook.module \guestbook_theme()

Implementation of hook_theme()

File

./guestbook.module, line 536

Code

function guestbook_theme() {
  return array(
    'guestbook_form_entry_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'guestbook_form_comment_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'guestbook' => array(
      'arguments' => array(
        'uid',
        'entries',
        'comment_entry',
        'limit',
      ),
    ),
    'guestbook_entry' => array(
      'arguments' => array(
        'uid',
        'entry',
        'comment_entry',
        'zebra',
        'confirm_delete',
      ),
    ),
    'guestbook_user_picture' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'guestbook_entry_comment' => array(
      'arguments' => array(
        'uid',
        'entry',
        'comment_entry',
      ),
    ),
    'guestbook_list' => array(
      'arguments' => array(
        'guestbooks',
        'header',
        'limit',
      ),
    ),
  );
}