24if (!defined(
'NOTOKENRENEWAL')) {
25 define(
'NOTOKENRENEWAL', 1);
27if (!defined(
'NOREQUIREMENU')) {
28 define(
'NOREQUIREMENU',
'1');
30if (!defined(
'NOREQUIREHTML')) {
31 define(
'NOREQUIREHTML',
'1');
33if (!defined(
'NOREQUIREAJAX')) {
34 define(
'NOREQUIREAJAX',
'1');
36if (!defined(
'NOREQUIRESOC')) {
37 define(
'NOREQUIRESOC',
'1');
39if (!defined(
'NOCSRFCHECK')) {
40 define(
'NOCSRFCHECK',
'1');
42if (!defined(
'NOREQUIREHTML')) {
43 define(
'NOREQUIREHTML',
'1');
47include
'../../main.inc.php';
49$objectType =
GETPOST(
'objectType',
'aZ09');
50$objectId =
GETPOST(
'objectId',
'aZ09');
51$field =
GETPOST(
'field',
'aZ09');
52$value =
GETPOST(
'value',
'aZ09');
56if (is_numeric($objectId)) {
57 $objectId = (int) $objectId;
59 $element_ref = $objectId;
65if (!$user->hasRight($module,
$object->element,
'write') && !$user->hasRight($module,
'write')) {
73dol_syslog(
"Call ajax core/ajax/editextrafield.php");
78if (
$object->id > 0 && $field && isset($value)) {
79 $object->array_options[
'options_'.$field] = $value;
80 $result =
$object->update($user);
82 print json_encode([
'status' =>
'error',
'message' =>
'Error updating '. $field]);
84 print json_encode([
'status' =>
'success',
'message' => $field .
' updated successfully']);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
getElementProperties($elementType)
Get an array with properties of an element.
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_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
if(!defined( 'NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.