function uc_cart_links_menu in Ubercart 6.2
Same name and namespace in other branches
- 5 uc_cart_links/uc_cart_links.module \uc_cart_links_menu()
- 7.3 uc_cart_links/uc_cart_links.module \uc_cart_links_menu()
Implements hook_menu().
File
- uc_cart_links/
uc_cart_links.module, line 16 - Allows store owners to create links to add products to carts and send customers on to checkout.
Code
function uc_cart_links_menu() {
$items['admin/store/settings/cart_links'] = array(
'title' => 'Cart links settings',
'description' => 'Configure and craft special product add to cart links.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'uc_cart_links_settings_form',
),
'access arguments' => array(
'administer cart links',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'uc_cart_links.admin.inc',
);
$items['admin/store/reports/cart_links'] = array(
'title' => 'Cart links clicks',
'description' => 'Track clicks through cart links.',
'page callback' => 'uc_cart_links_report',
'access arguments' => array(
'view cart links report',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'uc_cart_links.admin.inc',
);
$items['admin/store/help/cart_links'] = array(
'title' => 'Creating cart links',
'description' => 'Learn how to create cart links for your products.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'uc_cart_links_creation_help',
),
'access arguments' => array(
'administer store',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'uc_cart_links.admin.inc',
);
$items['cart/add/%'] = array(
'title' => 'Add to cart',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'uc_cart_links_form',
2,
),
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
'file' => 'uc_cart_links.pages.inc',
);
return $items;
}