-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuc_cart_links.module
90 lines (83 loc) · 2.81 KB
/
uc_cart_links.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
// $Id$
/**
* @file
* Allows store owners to create links to add products to carts and send
* customers on to checkout.
*
* Development sponsored by the Ubercart project. http://www.ubercart.org
*/
/*******************************************************************************
* Hook Functions (Drupal)
******************************************************************************/
/**
* Implementation of hook_menu().
*/
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' => '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;
}
/**
* Implementation of hook_perm().
*/
function uc_cart_links_perm() {
return array('administer cart links', 'view cart links report');
}
/**
* Implementation of hook_add_to_cart().
*/
function uc_cart_links_add_to_cart($nid, $qty, $data) {
if (user_access('administer cart links') &&
variable_get('uc_cart_links_add_show', FALSE)) {
$cart_link = 'p'. $nid .'_q'. $qty;
if (!empty($data['attributes'])) {
foreach ($data['attributes'] as $attribute => $option) {
if (is_array($option)) {
// Checkbox options are stored in an array
foreach ($option as $oid => $ovalue) {
if ($ovalue != 0) {
$cart_link .= '_a'. $attribute .'o'. $oid;
}
}
}
else {
// Textfield, Select, or Radio options
$cart_link .= '_a'. $attribute .'o'. $option;
}
}
}
drupal_set_message(t('Cart link product action: @cart_link', array('@cart_link' => $cart_link)));
}
}