This repository has been archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
get-order-states.php
executable file
·126 lines (112 loc) · 3.74 KB
/
get-order-states.php
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
/**
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2015 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
include(dirname(__FILE__).'/../../../config/config.inc.php');
include(dirname(__FILE__).'/../../../init.php');
include(dirname(__FILE__).'/../classes/Gateway.php');
if (Tools::getValue('token') != Tools::encrypt(Configuration::get('PS_SHOP_NAME')))
die(Tools::displayError());
$action = Tools::getValue('action');
$field = Tools::getValue('field');
$id = Tools::getValue('id');
$order_states = explode(':', Gateway::getConfig($field));
global $cookie;
if (empty($order_states[0]))
$order_states = array();
if ($action != 'display')
{
$position = 0;
if ($action == 'add')
array_push($order_states, $id);
elseif ($action == 'up')
{
foreach ($order_states as $key => $id_order_state)
if ($id_order_state == $id)
{
$position = (int)$key;
break;
}
if ($position != 0)
{
$temp = $order_states[$position];
$order_states[$position] = $order_states[$position - 1];
$order_states[$position - 1] = $temp;
}
}
elseif ($action == 'delete')
{
foreach ($order_states as $key => $id_order_state)
if ($id_order_state == $id)
{
unset($order_states[$key]);
break;
}
}
else
{
foreach ($order_states as $key => $id_order_state)
if ($id_order_state == $id)
{
$position = $key;
break;
}
if ($position != (count($order_states) - 1))
{
$temp = $order_states[$position];
$order_states[$position] = $order_states[$position + 1];
$order_states[$position + 1] = $temp;
}
}
$order_states = array_unique($order_states);
foreach ($order_states as $key => $id_state)
if (empty($id_state) || !Db::getInstance()->getRow('SELECT `id_order_state`
FROM `'._DB_PREFIX_.'order_state`
WHERE `id_order_state` = '.(int)$id_state))
unset($order_states[$key]);
Gateway::updateConfig($field, implode(':', $order_states));
}
/* affichage des state en tableau. */
if (count($order_states) > 0)
foreach ($order_states as $state)
{
$state_infos = Db::getInstance()->getRow('SELECT `id_order_state`, `name`
FROM `'._DB_PREFIX_.'order_state_lang`
WHERE `id_lang` = '.(int)$cookie->id_lang.'
AND `id_order_state` = '.(int)$state.'
');
if ($state_infos)
{
$id_order_state = $state_infos['id_order_state'];
$order_state_name = $state_infos['name'];
echo '<li id="state_'.(int)$id_order_state.'" data="'.(int)$id_order_state.'" class="order_state_line">
<span class="delete_'.($field == 'ORDER_STATE_BEFORE' ? 'before' : 'after').'" style="cursor:pointer;">
<img src="../img/admin/disabled.gif" alt="X" />
</span>
<span>'.$order_state_name.'</span>
<span class="up_'.($field == 'ORDER_STATE_BEFORE' ? 'before' : 'after').'" style="cursor:pointer;">▲</span>
<span class="down_'.($field == 'ORDER_STATE_BEFORE' ? 'before' : 'after').'" style="cursor:pointer;">▼</span>
</li>';
}
}