function uc_catalog_path in Ubercart 5
Same name and namespace in other branches
- 8.4 uc_catalog/uc_catalog.module \uc_catalog_path()
- 6.2 uc_catalog/uc_catalog.module \uc_catalog_path()
- 7.3 uc_catalog/uc_catalog.module \uc_catalog_path()
Create paths to the catalog from taxonomy term.
7 calls to uc_catalog_path()
- theme_uc_catalog_browse in uc_catalog/
uc_catalog.module - Display a formatted catalog page.
- uc_catalog_link_alter in uc_catalog/
uc_catalog.module - Implementation of hook_link_alter().
- uc_catalog_nodeapi in uc_catalog/
uc_catalog.module - Implementation of 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 - Implementation of hook_taxonomy().
File
- uc_catalog/
uc_catalog.module, line 1362 - Übercart Catalog module.
Code
function uc_catalog_path($term) {
return 'catalog/' . $term->tid;
}