You are here

function commerce_option_menu_alter in Commerce Product Option 7.2

Same name and namespace in other branches
  1. 7 commerce_option.module \commerce_option_menu_alter()

Implements hook_menu_alter().

File

./commerce_option.module, line 38

Code

function commerce_option_menu_alter(&$items) {
  $items['admin/commerce/products/option-sets']['type'] = MENU_LOCAL_TASK;
  $items['admin/commerce/products/option-sets']['title'] = t('Option sets');
  $items['admin/commerce/orders/options']['type'] = MENU_LOCAL_TASK;
  $items['admin/commerce/orders/options']['title'] = t('Options');
}