function uc_global_quote_menu in Ubercart Global Quote 7
Same name and namespace in other branches
- 6 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',
6,
),
'access arguments' => array(
'configure quotes',
),
'type' => MENU_LOCAL_TASK,
'file' => 'uc_global_quote_admin.inc',
);
return $items;
}