You are here

function uc_catalog_block_info in Ubercart 7.3

Implements hook_block_info().

Displays a menu for navigating the "Product Catalog"

File

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

Code

function uc_catalog_block_info() {
  $blocks['catalog'] = array(
    'info' => t('Catalog'),
    'cache' => DRUPAL_CACHE_PER_ROLE | DRUPAL_CACHE_PER_PAGE,
  );
  return $blocks;
}