You are here

function uc_catalog_path in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_catalog/uc_catalog.module \uc_catalog_path()
  2. 5 uc_catalog/uc_catalog.module \uc_catalog_path()
  3. 7.3 uc_catalog/uc_catalog.module \uc_catalog_path()

Creates paths to the catalog from taxonomy term.

7 calls to uc_catalog_path()
theme_uc_catalog_browse in uc_catalog/uc_catalog.pages.inc
Display a formatted catalog page.
uc_catalog_link_alter in uc_catalog/uc_catalog.module
Implements hook_link_alter().
uc_catalog_nodeapi in uc_catalog/uc_catalog.module
Implements hook_nodeapi().
uc_catalog_set_breadcrumb in uc_catalog/uc_catalog.module
Formats the breadcrumb to the current term's ancestry.
uc_catalog_taxonomy in uc_catalog/uc_catalog.module
Implements hook_taxonomy().

... See full list

File

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

Code

function uc_catalog_path($term) {
  return 'catalog/' . $term->tid;
}