function uc_wishlist_theme in UC Wish List 6
Same name and namespace in other branches
- 8 uc_wishlist.module \uc_wishlist_theme()
- 7 uc_wishlist.module \uc_wishlist_theme()
Implementation of hook_theme().
File
- ./
uc_wishlist.module, line 113 - Allows users to create public shopping/wish lists.
Code
function uc_wishlist_theme() {
return array(
'uc_wishlist_block_title' => array(
'arguments' => array(
'wishlist_image' => NULL,
'uc_wishlist_path' => FALSE,
'arrow_up_image' => FALSE,
),
),
'uc_wishlist_block_content' => array(
'arguments' => array(),
),
'uc_wishlist_view_form' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}