You are here

function uc_catalog_theme in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_catalog/uc_catalog.module \uc_catalog_theme()
  2. 6.2 uc_catalog/uc_catalog.module \uc_catalog_theme()

Implements hook_theme().

File

uc_catalog/uc_catalog.module, line 121
Ubercart Catalog module.

Code

function uc_catalog_theme() {
  return array(
    'uc_catalog_block' => array(
      'variables' => array(
        'menu_tree' => NULL,
      ),
      'file' => 'uc_catalog.theme.inc',
    ),
    'uc_catalog_item' => array(
      'variables' => array(
        'here' => NULL,
        'link' => NULL,
        'lis' => NULL,
        'expand' => NULL,
        'inpath' => NULL,
        'count_children' => NULL,
      ),
      'file' => 'uc_catalog.theme.inc',
    ),
  );
}