You are here

function uc_product_types in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_product/uc_product.module \uc_product_types()
  2. 7.3 uc_product/uc_product.module \uc_product_types()

Returns an array of product node types.

14 calls to uc_product_types()
theme_uc_catalog_browse in uc_catalog/uc_catalog.pages.inc
Display a formatted catalog page.
uc_catalog_enable in uc_catalog/uc_catalog.module
Implements hook_enable().
uc_catalog_get_page in uc_catalog/uc_catalog.module
Loads catalog information for display.
uc_catalog_set_breadcrumb in uc_catalog/uc_catalog.module
Formats the breadcrumb to the current term's ancestry.
uc_order_load_product_select in uc_order/uc_order.admin.inc
Selects a product to add to the order.

... See full list

File

uc_product/uc_product.module, line 1611
The product module for Ubercart.

Code

function uc_product_types() {
  return module_invoke_all('product_types');
}