You are here

function uc_global_quote_menu in Ubercart Global Quote 6

Same name and namespace in other branches
  1. 7 uc_global_quote.module \uc_global_quote_menu()

Implementation of hook_menu().

File

./uc_global_quote.module, line 11
Shipping quote module that defines rates based on weight and shipping regions

Code

function uc_global_quote_menu() {
  $items = array();
  $items['admin/store/settings/quotes/methods/global_quote'] = array(
    'title' => 'Global quote',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'uc_global_quote_admin',
    ),
    'access arguments' => array(
      'configure quotes',
    ),
    'type' => MENU_LOCAL_TASK,
    'file' => 'uc_global_quote_admin.inc',
  );
  return $items;
}