dolibarr  17.0.4
orderAttribute.php
1 <?php
2 /* Copyright (C) 2016 Marcos GarcĂ­a <marcosgdf@gmail.com>
3  * Copyright (C) 2022 Open-Dsi <support@open-dsi.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
19 if (!defined('NOTOKENRENEWAL')) {
20  define('NOTOKENRENEWAL', '1'); // Disable token renewal
21 }
22 if (!defined('NOREQUIREMENU')) {
23  define('NOREQUIREMENU', '1');
24 }
25 if (!defined('NOREQUIREHTML')) {
26  define('NOREQUIREHTML', '1');
27 }
28 if (!defined('NOREQUIREAJAX')) {
29  define('NOREQUIREAJAX', '1');
30 }
31 if (!defined('NOREQUIRESOC')) {
32  define('NOREQUIRESOC', '1');
33 }
34 if (!defined('NOREQUIRETRAN')) {
35  define('NOREQUIRETRAN', '1');
36 }
37 
38 // Load Dolibarr environment
39 require '../../main.inc.php';
40 require DOL_DOCUMENT_ROOT . '/variants/class/ProductAttribute.class.php';
41 
42 // Security check
43 if (!isModEnabled('variants')) {
44  accessforbidden('Module not enabled');
45 }
46 if ($user->socid > 0) { // Protection if external user
48 }
49 $result = restrictedArea($user, 'variants');
50 
51 
52 /*
53  * View
54  */
55 
56 top_httphead();
57 
58 print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
59 
60 // Registering the location of boxes
61 if (GETPOST('roworder', 'alpha', 3)) {
62  $roworder = GETPOST('roworder', 'alpha', 3);
63 
64  dol_syslog("AjaxOrderAttribute roworder=" . $roworder, LOG_DEBUG);
65 
66  $rowordertab = explode(',', $roworder);
67  $newrowordertab = array();
68  foreach ($rowordertab as $value) {
69  if (!empty($value)) {
70  $newrowordertab[] = $value;
71  }
72  }
73 
74  $row = new ProductAttribute($db);
75 
76  $row->attributesAjaxOrder($newrowordertab); // This update field rank or position in table row->table_element_line
77 } else {
78  print 'Bad parameters for orderAttribute.php';
79 }
Class ProductAttribute Used to represent a product attribute.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1440
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.