You are here

function commerce_product_type_options_list in Commerce Core 7

Wraps commerce_product_type_get_name() for the Entity module.

2 string references to 'commerce_product_type_options_list'
commerce_order_rules_condition_info in modules/order/commerce_order.rules.inc
Implements hook_rules_condition_info().
commerce_product_entity_property_info in modules/product/commerce_product.info.inc
Implements hook_entity_property_info().

File

modules/product/commerce_product.module, line 462
Defines the core Commerce product entity, including the entity itself, the bundle definitions (product types), and various API functions to manage products and interact with them through forms and autocompletes.

Code

function commerce_product_type_options_list() {
  return commerce_product_type_get_name();
}