You are here

function commerce_line_item_ui_line_item_type_redirect in Commerce Core 7

Redirects a line item type URL to its fields management page.

1 string reference to 'commerce_line_item_ui_line_item_type_redirect'
commerce_line_item_ui_menu in modules/line_item/commerce_line_item_ui.module
Implements hook_menu().

File

modules/line_item/commerce_line_item_ui.module, line 49
Provides the user interface for managing Line Item types.

Code

function commerce_line_item_ui_line_item_type_redirect($type) {
  drupal_goto('admin/commerce/config/line-items/' . $type . '/fields');
}