hpdl
|
1
|
1
|
<?php
|
|
2
|
/*
|
hpdl
|
153
|
3
|
$Id: order_total.php 620 2006-07-13 10:48:54Z hpdl $
|
hpdl
|
1
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
hpdl
|
404
|
8
|
Copyright (c) 2006 osCommerce
|
hpdl
|
1
|
9
|
|
|
10
|
Released under the GNU General Public License
|
|
11
|
*/
|
|
12
|
|
hpdl
|
428
|
13
|
class osC_OrderTotal {
|
hpdl
|
434
|
14
|
var $_modules = array(),
|
hpdl
|
439
|
15
|
$_data = array(),
|
hpdl
|
434
|
16
|
$_group = 'order_total';
|
hpdl
|
1
|
17
|
|
|
18
|
// class constructor
|
hpdl
|
428
|
19
|
function osC_OrderTotal() {
|
|
20
|
global $osC_Database, $osC_Language;
|
hpdl
|
377
|
21
|
|
hpdl
|
428
|
22
|
$Qmodules = $osC_Database->query('select code from :table_templates_boxes where modules_group = "order_total"');
|
|
23
|
$Qmodules->bindTable(':table_templates_boxes', TABLE_TEMPLATES_BOXES);
|
|
24
|
$Qmodules->setCache('modules-order_total');
|
|
25
|
$Qmodules->execute();
|
hpdl
|
1
|
26
|
|
hpdl
|
428
|
27
|
while ($Qmodules->next()) {
|
hpdl
|
434
|
28
|
$this->_modules[] = $Qmodules->value('code');
|
hpdl
|
428
|
29
|
}
|
hpdl
|
404
|
30
|
|
hpdl
|
428
|
31
|
$Qmodules->freeResult();
|
hpdl
|
1
|
32
|
|
hpdl
|
428
|
33
|
$osC_Language->load('modules-order_total');
|
|
34
|
|
hpdl
|
434
|
35
|
foreach ($this->_modules as $module) {
|
hpdl
|
428
|
36
|
$module_class = 'osC_OrderTotal_' . $module;
|
|
37
|
|
hpdl
|
439
|
38
|
if (class_exists($module_class) === false) {
|
|
39
|
include('includes/modules/order_total/' . $module . '.' . substr(basename(__FILE__), (strrpos(basename(__FILE__), '.')+1)));
|
|
40
|
}
|
|
41
|
|
hpdl
|
428
|
42
|
$GLOBALS[$module_class] = new $module_class();
|
hpdl
|
1
|
43
|
}
|
hpdl
|
437
|
44
|
|
|
45
|
usort($this->_modules, array('osC_OrderTotal', '_usortModules'));
|
hpdl
|
1
|
46
|
}
|
|
47
|
|
hpdl
|
432
|
48
|
// class methods
|
|
49
|
function getCode() {
|
|
50
|
return $this->_code;
|
|
51
|
}
|
|
52
|
|
|
53
|
function getTitle() {
|
|
54
|
return $this->_title;
|
|
55
|
}
|
|
56
|
|
|
57
|
function getDescription() {
|
|
58
|
return $this->_description;
|
|
59
|
}
|
|
60
|
|
hpdl
|
620
|
61
|
function isEnabled() {
|
hpdl
|
432
|
62
|
return $this->_status;
|
|
63
|
}
|
|
64
|
|
|
65
|
function getSortOrder() {
|
|
66
|
return $this->_sort_order;
|
|
67
|
}
|
|
68
|
|
hpdl
|
439
|
69
|
function &getResult() {
|
hpdl
|
435
|
70
|
global $osC_ShoppingCart;
|
hpdl
|
1
|
71
|
|
hpdl
|
439
|
72
|
$this->_data = array();
|
hpdl
|
428
|
73
|
|
hpdl
|
439
|
74
|
foreach ($this->_modules as $module) {
|
|
75
|
$module = 'osC_OrderTotal_' . $module;
|
hpdl
|
428
|
76
|
|
hpdl
|
620
|
77
|
if ($GLOBALS[$module]->isEnabled() === true) {
|
hpdl
|
439
|
78
|
$GLOBALS[$module]->process();
|
hpdl
|
435
|
79
|
|
hpdl
|
439
|
80
|
foreach ($GLOBALS[$module]->output as $output) {
|
|
81
|
if (tep_not_null($output['title']) && tep_not_null($output['text'])) {
|
|
82
|
$this->_data[] = array('code' => $GLOBALS[$module]->getCode(),
|
|
83
|
'title' => $output['title'],
|
|
84
|
'text' => $output['text'],
|
|
85
|
'value' => $output['value'],
|
|
86
|
'sort_order' => $GLOBALS[$module]->getSortOrder());
|
hpdl
|
1
|
87
|
}
|
|
88
|
}
|
|
89
|
}
|
|
90
|
}
|
|
91
|
|
hpdl
|
439
|
92
|
return $this->_data;
|
hpdl
|
1
|
93
|
}
|
|
94
|
|
hpdl
|
431
|
95
|
function hasActive() {
|
|
96
|
static $has_active;
|
|
97
|
|
|
98
|
if (isset($has_active) === false) {
|
|
99
|
$has_active = false;
|
|
100
|
|
hpdl
|
434
|
101
|
foreach ($this->_modules as $module) {
|
hpdl
|
620
|
102
|
if ($GLOBALS['osC_OrderTotal_' . $module]->isEnabled() === true) {
|
hpdl
|
431
|
103
|
$has_active = true;
|
|
104
|
break;
|
|
105
|
}
|
|
106
|
}
|
|
107
|
}
|
|
108
|
|
|
109
|
return $has_active;
|
|
110
|
}
|
|
111
|
|
hpdl
|
428
|
112
|
function _usortModules($a, $b) {
|
hpdl
|
432
|
113
|
if ($GLOBALS['osC_OrderTotal_' . $a]->getSortOrder() == $GLOBALS['osC_OrderTotal_' . $b]->getSortOrder()) {
|
|
114
|
return strnatcasecmp($GLOBALS['osC_OrderTotal_' . $a]->getTitle(), $GLOBALS['osC_OrderTotal_' . $a]->getTitle());
|
hpdl
|
428
|
115
|
}
|
|
116
|
|
hpdl
|
432
|
117
|
return ($GLOBALS['osC_OrderTotal_' . $a]->getSortOrder() < $GLOBALS['osC_OrderTotal_' . $b]->getSortOrder()) ? -1 : 1;
|
hpdl
|
428
|
118
|
}
|
hpdl
|
1
|
119
|
}
|
hpdl
|
428
|
120
|
?>
|