You are here

function commerce_gc_product_menu in Commerce GC 7

File

modules/commerce_gc_product/commerce_gc_product.module, line 115
Provides Giftcard product type and support.

Code

function commerce_gc_product_menu() {
  $items['commerce_gc_product/autocomplete/line_item_gc_product_selector'] = array(
    'page callback' => 'commerce_gc_product_autocomplete_page',
    'access arguments' => array(
      'View any commerce_product of any type',
    ),
    'type' => MENU_CALLBACK,
    'title' => 'Giftcard product autocomplete',
  );
  return $items;
}