You are here

function uc_wishlist_theme in UC Wish List 7

Same name and namespace in other branches
  1. 8 uc_wishlist.module \uc_wishlist_theme()
  2. 6 uc_wishlist.module \uc_wishlist_theme()

Implements hook_theme().

File

./uc_wishlist.module, line 158
Allows users to create public shopping/wish lists.

Code

function uc_wishlist_theme() {
  return array(
    'uc_wishlist_block_title' => array(
      'variables' => array(
        'wishlist_image' => NULL,
        'uc_wishlist_path' => FALSE,
        'arrow_up_image' => FALSE,
      ),
    ),
    'uc_wishlist_block_content' => array(
      'variables' => array(),
    ),
    'uc_wishlist_view_form' => array(
      'render element' => 'form',
    ),
    'uc_wishlist_user_display' => array(
      'variables' => array(
        'settings_form' => array(),
        'expired' => FALSE,
        'expiration_date' => '',
        'message' => '',
        'wishlist' => '',
        'email_link' => '',
      ),
      'template' => 'uc_wishlist_user_display',
    ),
  );
}