25if (!defined(
'NOTOKENRENEWAL')) {
26 define(
'NOTOKENRENEWAL',
'1');
28if (!defined(
'NOREQUIREMENU')) {
29 define(
'NOREQUIREMENU',
'1');
31if (!defined(
'NOREQUIREHTML')) {
32 define(
'NOREQUIREHTML',
'1');
34if (!defined(
'NOREQUIREAJAX')) {
35 define(
'NOREQUIREAJAX',
'1');
37if (!defined(
'NOREQUIRESOC')) {
38 define(
'NOREQUIRESOC',
'1');
42require
'../../main.inc.php';
43require_once DOL_DOCUMENT_ROOT.
'/core/class/genericobject.class.php';
45$action =
GETPOST(
'action',
'aZ09');
46$backtopage =
GETPOST(
'backtopage');
49$element =
GETPOST(
'element',
'alpha');
50$field =
GETPOST(
'field',
'alpha');
56if (!is_object($object)) {
59'@phan-var-force CommonObject $object';
61$object->fields[$field] = array(
'type' => $format,
'enabled' => 1);
65$usesublevelpermission = ($module != $element ? $element :
'');
66if ($usesublevelpermission && !$user->hasRight($module, $element)) {
67 $usesublevelpermission =
'';
73if (!empty($user->socid)) {
74 $socid = $user->socid;
82if (preg_match(
'/stat[u][st]$/', $field) || ($field ==
'evenunsubscribe' &&
$object->table_element ==
'mailing')) {
84} elseif ($element ==
'product' && in_array($field, array(
'tosell',
'tobuy',
'tobatch'))) {
85 restrictedArea($user,
'produit|service', $object,
'product&product',
'',
'',
'rowid');
104print
'<!-- Ajax page called with url '.dol_escape_htmltag($_SERVER[
"PHP_SELF"]).
'?'.
dol_escape_htmltag($_SERVER[
"QUERY_STRING"]).
' -->'.
"\n";
107if (($action ==
'set') && !empty($id)) {
108 $triggerkey = strtoupper(($module != $element ? $module.
'_' :
'').$element).
'_UPDATE';
110 if ($triggerkey ==
'SOCIETE_UPDATE') {
111 $triggerkey =
'COMPANY_MODIFY';
113 if ($triggerkey ==
'PRODUCT_UPDATE') {
114 $triggerkey =
'PRODUCT_MODIFY';
117 $result =
$object->setValueFrom($field, $value,
$object->table_element, $id, $format,
'', $user, $triggerkey);
121 http_response_code(500);
126 header(
'Location: '.$backtopage);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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='', $useCache=0, $maxCacheByType=10)
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.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.
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.