dolibarr  19.0.0-dev
objectonoff.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2015-2023 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 if (!defined('NOTOKENRENEWAL')) {
25  define('NOTOKENRENEWAL', '1'); // Disables token renewal
26 }
27 if (!defined('NOREQUIREMENU')) {
28  define('NOREQUIREMENU', '1');
29 }
30 if (!defined('NOREQUIREHTML')) {
31  define('NOREQUIREHTML', '1');
32 }
33 if (!defined('NOREQUIREAJAX')) {
34  define('NOREQUIREAJAX', '1');
35 }
36 if (!defined('NOREQUIRESOC')) {
37  define('NOREQUIRESOC', '1');
38 }
39 if (!defined('NOREQUIRETRAN')) {
40  define('NOREQUIRETRAN', '1');
41 }
42 
43 // Load Dolibarr environment
44 require '../../main.inc.php';
45 require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php';
46 
47 $action = GETPOST('action', 'aZ09');
48 $backtopage = GETPOST('backtopage');
49 
50 $id = GETPOST('id', 'int');
51 $element = GETPOST('element', 'alpha'); // 'myobject' (myobject=mymodule) or 'myobject@mymodule' or 'myobject_mysubobject' (myobject=mymodule)
52 $field = GETPOST('field', 'alpha');
53 $value = GETPOST('value', 'int');
54 $format = 'int';
55 
56 // Load object according to $id and $element
57 $object = fetchObjectByElement($id, $element);
58 if (!is_object($object)) {
59  httponly_accessforbidden("Bad value for combination of parameters element/field: Object not found."); // This includes the exit.
60 }
61 
62 $object->fields[$field] = array('type' => $format, 'enabled' => 1);
63 
64 $module = $object->module;
65 $element = $object->element;
66 $usesublevelpermission = ($module != $element ? $element : '');
67 if ($usesublevelpermission && !isset($user->rights->$module->$element)) { // There is no permission on object defined, we will check permission on module directly
68  $usesublevelpermission = '';
69 }
70 
71 //print $object->id.' - '.$object->module.' - '.$object->element.' - '.$object->table_element.' - '.$usesublevelpermission."\n";
72 
73 // Security check
74 if (!empty($user->socid)) {
75  $socid = $user->socid;
76  if (!empty($object->socid) && $socid != $object->socid) {
77  httponly_accessforbidden("Access on object not allowed for this external user."); // This includes the exit.
78  }
79 }
80 
81 // We check permission.
82 // Check is done on $user->rights->element->create or $user->rights->element->subelement->create (because $action = 'set')
83 if (preg_match('/status$/', $field) || ($field == 'evenunsubscribe' && $object->table_element == 'mailing')) {
84  restrictedArea($user, $object->module, $object, $object->table_element, $usesublevelpermission);
85 } elseif ($element == 'product' && in_array($field, array('tosell', 'tobuy', 'tobatch'))) { // Special case for products
86  restrictedArea($user, 'produit|service', $object, 'product&product', '', '', 'rowid');
87 } else {
88  httponly_accessforbidden("Bad value for combination of parameters element/field: Field not supported."); // This includes the exit.
89 }
90 
91 
92 /*
93  * View
94  */
95 
96 top_httphead();
97 
98 print '<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER["PHP_SELF"]).'?'.dol_escape_htmltag($_SERVER["QUERY_STRING"]).' -->'."\n";
99 
100 // Registering new values
101 if (($action == 'set') && !empty($id)) {
102  $triggerkey = strtoupper(($module != $element ? $module.'_' : '').$element).'_UPDATE';
103  // Special case
104  if ($triggerkey == 'SOCIETE_UPDATE') {
105  $triggerkey = 'COMPANY_MODIFY';
106  }
107  if ($triggerkey == 'PRODUCT_UPDATE') {
108  $triggerkey = 'PRODUCT_MODIFY';
109  }
110 
111  $result = $object->setValueFrom($field, $value, $object->table_element, $id, $format, '', $user, $triggerkey);
112 
113  if ($result < 0) {
114  print $object->error;
115  http_response_code(500);
116  exit;
117  }
118 
119  if ($backtopage) {
120  header('Location: '.$backtopage);
121  exit;
122  }
123 }
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
fetchObjectByElement($element_id, $element_type, $element_ref='')
Fetch an object from its id and element_type Inclusion of classes is automatic.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
if(!defined('NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1494
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.
httponly_accessforbidden($message=1, $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.