@@ -139,8 +139,12 @@ discard block |
||
| 139 | 139 | //if ($user->socid > 0) $socid = $user->socid; |
| 140 | 140 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 141 | 141 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 142 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 143 | -if (!$permissiontoread || ($action === 'create' && !$permissiontoadd)) accessforbidden(); |
|
| 142 | +if (empty($conf->hrm->enabled)) { |
|
| 143 | + accessforbidden(); |
|
| 144 | +} |
|
| 145 | +if (!$permissiontoread || ($action === 'create' && !$permissiontoadd)) { |
|
| 146 | + accessforbidden(); |
|
| 147 | +} |
|
| 144 | 148 | |
| 145 | 149 | |
| 146 | 150 | /* |
@@ -435,9 +439,12 @@ discard block |
||
| 435 | 439 | |
| 436 | 440 | $parameters = array(); |
| 437 | 441 | $reshook = $hookmanager->executeHooks('formAddObjectLine', $parameters, $object, $action); // Note that $action and $object may have been modified by hook |
| 438 | - if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
|
| 439 | - if (empty($reshook)) |
|
| 440 | - $object->formAddObjectLine(1, $mysoc, $soc); |
|
| 442 | + if ($reshook < 0) { |
|
| 443 | + setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
|
| 444 | + } |
|
| 445 | + if (empty($reshook)) { |
|
| 446 | + $object->formAddObjectLine(1, $mysoc, $soc); |
|
| 447 | + } |
|
| 441 | 448 | } |
| 442 | 449 | } |
| 443 | 450 | |
@@ -29,15 +29,15 @@ discard block |
||
| 29 | 29 | // Load Dolibarr environment |
| 30 | 30 | require '../main.inc.php'; |
| 31 | 31 | |
| 32 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php'; |
|
| 33 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php'; |
|
| 34 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php'; |
|
| 35 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/job.class.php'; |
|
| 36 | -require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_job.lib.php'; |
|
| 37 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/skillrank.class.php'; |
|
| 32 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; |
|
| 33 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; |
|
| 34 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php'; |
|
| 35 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/job.class.php'; |
|
| 36 | +require_once DOL_DOCUMENT_ROOT.'/hrm/lib/hrm_job.lib.php'; |
|
| 37 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/skillrank.class.php'; |
|
| 38 | 38 | |
| 39 | 39 | // Load translation files required by the page |
| 40 | -$langs->loadLangs(array('hrm', 'other', 'products')); // why products? |
|
| 40 | +$langs->loadLangs(array('hrm', 'other', 'products')); // why products? |
|
| 41 | 41 | |
| 42 | 42 | // Get parameters |
| 43 | 43 | $id = GETPOST('id', 'int'); |
@@ -48,12 +48,12 @@ discard block |
||
| 48 | 48 | $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'jobcard'; // To manage different context of search |
| 49 | 49 | $backtopage = GETPOST('backtopage', 'alpha'); |
| 50 | 50 | $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha'); |
| 51 | -$lineid = GETPOST('lineid', 'int'); |
|
| 51 | +$lineid = GETPOST('lineid', 'int'); |
|
| 52 | 52 | |
| 53 | 53 | // Initialize technical objects |
| 54 | 54 | $object = new Job($db); |
| 55 | 55 | $extrafields = new ExtraFields($db); |
| 56 | -$diroutputmassaction = $conf->hrm->dir_output . '/temp/massgeneration/' . $user->id; |
|
| 56 | +$diroutputmassaction = $conf->hrm->dir_output.'/temp/massgeneration/'.$user->id; |
|
| 57 | 57 | $hookmanager->initHooks(array('jobcard', 'globalcard')); // Note that conf->hooks_modules contains array |
| 58 | 58 | |
| 59 | 59 | // Fetch optionals attributes and labels |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | $search_all = GETPOST("search_all", 'alpha'); |
| 66 | 66 | $search = array(); |
| 67 | 67 | foreach ($object->fields as $key => $val) { |
| 68 | - if (GETPOST('search_' . $key, 'alpha')) { |
|
| 69 | - $search[$key] = GETPOST('search_' . $key, 'alpha'); |
|
| 68 | + if (GETPOST('search_'.$key, 'alpha')) { |
|
| 69 | + $search[$key] = GETPOST('search_'.$key, 'alpha'); |
|
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | |
@@ -75,13 +75,13 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | // Load object |
| 78 | -include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once. |
|
| 78 | +include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once. |
|
| 79 | 79 | |
| 80 | 80 | // Permissions |
| 81 | 81 | $permissiontoread = $user->rights->hrm->all->read; |
| 82 | 82 | $permissiontoadd = $user->rights->hrm->all->write; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php |
| 83 | 83 | $permissiontodelete = $user->rights->hrm->all->delete; |
| 84 | -$upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1] . '/job'; |
|
| 84 | +$upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1].'/job'; |
|
| 85 | 85 | |
| 86 | 86 | // Security check (enable the most restrictive one) |
| 87 | 87 | //if ($user->socid > 0) accessforbidden(); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) { |
| 113 | 113 | $backtopage = $backurlforlist; |
| 114 | 114 | } else { |
| 115 | - $backtopage = dol_buildpath('/hrm/job_card.php', 1) . '?id=' . ($id > 0 ? $id : '__ID__'); |
|
| 115 | + $backtopage = dol_buildpath('/hrm/job_card.php', 1).'?id='.($id > 0 ? $id : '__ID__'); |
|
| 116 | 116 | } |
| 117 | 117 | } |
| 118 | 118 | } |
@@ -122,20 +122,20 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen |
| 124 | 124 | if ($action != 'confirm_clone') { |
| 125 | - include DOL_DOCUMENT_ROOT . '/core/actions_addupdatedelete.inc.php'; |
|
| 125 | + include DOL_DOCUMENT_ROOT.'/core/actions_addupdatedelete.inc.php'; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | // Actions when linking object each other |
| 129 | - include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; |
|
| 129 | + include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; |
|
| 130 | 130 | |
| 131 | 131 | // Actions when printing a doc from card |
| 132 | - include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php'; |
|
| 132 | + include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php'; |
|
| 133 | 133 | |
| 134 | 134 | // Action to move up and down lines of object |
| 135 | 135 | //include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php'; |
| 136 | 136 | |
| 137 | 137 | // Action to build doc |
| 138 | - include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php'; |
|
| 138 | + include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php'; |
|
| 139 | 139 | |
| 140 | 140 | if ($action == 'set_thirdparty' && $permissiontoadd) { |
| 141 | 141 | $object->setValueFrom('fk_soc', GETPOST('fk_soc', 'int'), '', '', 'date', '', $user, $triggermodname); |
@@ -147,8 +147,8 @@ discard block |
||
| 147 | 147 | // Actions to send emails |
| 148 | 148 | $triggersendname = 'HRM_JOB_SENTBYMAIL'; |
| 149 | 149 | $autocopy = 'MAIN_MAIL_AUTOCOPY_JOB_TO'; |
| 150 | - $trackid = 'job' . $object->id; |
|
| 151 | - include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php'; |
|
| 150 | + $trackid = 'job'.$object->id; |
|
| 151 | + include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php'; |
|
| 152 | 152 | |
| 153 | 153 | if ($action == 'confirm_clone' && $confirm != 'yes') { |
| 154 | 154 | $action = ''; |
@@ -234,36 +234,36 @@ discard block |
||
| 234 | 234 | |
| 235 | 235 | // Part to create |
| 236 | 236 | if ($action == 'create') { |
| 237 | - print load_fiche_titre($langs->trans("NewJobProfile", $langs->transnoentities('Job')), '', 'object_' . $object->picto); |
|
| 237 | + print load_fiche_titre($langs->trans("NewJobProfile", $langs->transnoentities('Job')), '', 'object_'.$object->picto); |
|
| 238 | 238 | |
| 239 | - print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">'; |
|
| 240 | - print '<input type="hidden" name="token" value="' . newToken() . '">'; |
|
| 239 | + print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">'; |
|
| 240 | + print '<input type="hidden" name="token" value="'.newToken().'">'; |
|
| 241 | 241 | print '<input type="hidden" name="action" value="add">'; |
| 242 | 242 | if ($backtopage) { |
| 243 | - print '<input type="hidden" name="backtopage" value="' . $backtopage . '">'; |
|
| 243 | + print '<input type="hidden" name="backtopage" value="'.$backtopage.'">'; |
|
| 244 | 244 | } |
| 245 | 245 | if ($backtopageforcancel) { |
| 246 | - print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">'; |
|
| 246 | + print '<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.'">'; |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | print dol_get_fiche_head(array(), ''); |
| 250 | 250 | |
| 251 | - print '<table class="border centpercent tableforfieldcreate">' . "\n"; |
|
| 251 | + print '<table class="border centpercent tableforfieldcreate">'."\n"; |
|
| 252 | 252 | |
| 253 | 253 | // Common attributes |
| 254 | - include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_add.tpl.php'; |
|
| 254 | + include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_add.tpl.php'; |
|
| 255 | 255 | |
| 256 | 256 | // Other attributes |
| 257 | - include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_add.tpl.php'; |
|
| 257 | + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php'; |
|
| 258 | 258 | |
| 259 | - print '</table>' . "\n"; |
|
| 259 | + print '</table>'."\n"; |
|
| 260 | 260 | |
| 261 | 261 | print dol_get_fiche_end(); |
| 262 | 262 | |
| 263 | 263 | print '<div class="center">'; |
| 264 | - print '<input type="submit" class="button" name="add" value="' . dol_escape_htmltag($langs->trans("Create")) . '">'; |
|
| 264 | + print '<input type="submit" class="button" name="add" value="'.dol_escape_htmltag($langs->trans("Create")).'">'; |
|
| 265 | 265 | print ' '; |
| 266 | - print '<input type="' . ($backtopage ? "submit" : "button") . '" class="button button-cancel" name="cancel" value="' . dol_escape_htmltag($langs->trans("Cancel")) . '"' . ($backtopage ? '' : ' onclick="history.go(-1)"') . '>'; // Cancel for create does not post form if we don't know the backtopage |
|
| 266 | + print '<input type="'.($backtopage ? "submit" : "button").'" class="button button-cancel" name="cancel" value="'.dol_escape_htmltag($langs->trans("Cancel")).'"'.($backtopage ? '' : ' onclick="history.go(-1)"').'>'; // Cancel for create does not post form if we don't know the backtopage |
|
| 267 | 267 | print '</div>'; |
| 268 | 268 | |
| 269 | 269 | print '</form>'; |
@@ -273,35 +273,35 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | // Part to edit record |
| 275 | 275 | if (($id || $ref) && $action == 'edit') { |
| 276 | - print load_fiche_titre($langs->trans("JobProfile"), '', 'object_' . $object->picto); |
|
| 276 | + print load_fiche_titre($langs->trans("JobProfile"), '', 'object_'.$object->picto); |
|
| 277 | 277 | |
| 278 | - print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">'; |
|
| 279 | - print '<input type="hidden" name="token" value="' . newToken() . '">'; |
|
| 278 | + print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">'; |
|
| 279 | + print '<input type="hidden" name="token" value="'.newToken().'">'; |
|
| 280 | 280 | print '<input type="hidden" name="action" value="update">'; |
| 281 | - print '<input type="hidden" name="id" value="' . $object->id . '">'; |
|
| 281 | + print '<input type="hidden" name="id" value="'.$object->id.'">'; |
|
| 282 | 282 | if ($backtopage) { |
| 283 | - print '<input type="hidden" name="backtopage" value="' . $backtopage . '">'; |
|
| 283 | + print '<input type="hidden" name="backtopage" value="'.$backtopage.'">'; |
|
| 284 | 284 | } |
| 285 | 285 | if ($backtopageforcancel) { |
| 286 | - print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">'; |
|
| 286 | + print '<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.'">'; |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | print dol_get_fiche_head(); |
| 290 | 290 | |
| 291 | - print '<table class="border centpercent tableforfieldedit">' . "\n"; |
|
| 291 | + print '<table class="border centpercent tableforfieldedit">'."\n"; |
|
| 292 | 292 | |
| 293 | 293 | // Common attributes |
| 294 | - include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php'; |
|
| 294 | + include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_edit.tpl.php'; |
|
| 295 | 295 | |
| 296 | 296 | // Other attributes |
| 297 | - include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_edit.tpl.php'; |
|
| 297 | + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_edit.tpl.php'; |
|
| 298 | 298 | |
| 299 | 299 | print '</table>'; |
| 300 | 300 | |
| 301 | 301 | print dol_get_fiche_end(); |
| 302 | 302 | |
| 303 | - print '<div class="center"><input type="submit" class="button button-save" name="save" value="' . $langs->trans("Save") . '">'; |
|
| 304 | - print ' <input type="submit" class="button button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">'; |
|
| 303 | + print '<div class="center"><input type="submit" class="button button-save" name="save" value="'.$langs->trans("Save").'">'; |
|
| 304 | + print ' <input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">'; |
|
| 305 | 305 | print '</div>'; |
| 306 | 306 | |
| 307 | 307 | print '</form>'; |
@@ -319,11 +319,11 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | // Confirmation to delete |
| 321 | 321 | if ($action == 'delete') { |
| 322 | - $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeleteJob'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1); |
|
| 322 | + $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('DeleteJob'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1); |
|
| 323 | 323 | } |
| 324 | 324 | // Confirmation to delete line |
| 325 | 325 | if ($action == 'deleteline') { |
| 326 | - $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id . '&lineid=' . $lineid, $langs->trans('DeleteLine'), $langs->trans('ConfirmDeleteLine'), 'confirm_deleteline', '', 0, 1); |
|
| 326 | + $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&lineid='.$lineid, $langs->trans('DeleteLine'), $langs->trans('ConfirmDeleteLine'), 'confirm_deleteline', '', 0, 1); |
|
| 327 | 327 | } |
| 328 | 328 | // Clone confirmation |
| 329 | 329 | if ($action == 'clone') { |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | // array('type' => 'other', 'name' => 'idwarehouse', 'label' => $langs->trans("SelectWarehouseForStockDecrease"), 'value' => $formproduct->selectWarehouses(GETPOST('idwarehouse')?GETPOST('idwarehouse'):'ifone', 'idwarehouse', '', 1, 0, 0, '', 0, $forcecombo)) |
| 350 | 350 | ); |
| 351 | 351 | */ |
| 352 | - $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('XXX'), $text, 'confirm_xxx', $formquestion, 0, 1, 220); |
|
| 352 | + $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('XXX'), $text, 'confirm_xxx', $formquestion, 0, 1, 220); |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | // Call Hook formConfirm |
@@ -367,10 +367,10 @@ discard block |
||
| 367 | 367 | |
| 368 | 368 | // Object card |
| 369 | 369 | // ------------------------------------------------------------ |
| 370 | - $linkback = '<a href="' . dol_buildpath('/hrm/job_list.php', 1) . '?restore_lastsearch_values=1' . (!empty($socid) ? '&socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>'; |
|
| 370 | + $linkback = '<a href="'.dol_buildpath('/hrm/job_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>'; |
|
| 371 | 371 | |
| 372 | 372 | $morehtmlref = '<div class="refid">'; |
| 373 | - $morehtmlref.= $object->label; |
|
| 373 | + $morehtmlref .= $object->label; |
|
| 374 | 374 | $morehtmlref .= '</div>'; |
| 375 | 375 | |
| 376 | 376 | |
@@ -386,11 +386,11 @@ discard block |
||
| 386 | 386 | //$keyforbreak='fieldkeytoswitchonsecondcolumn'; // We change column just before this field |
| 387 | 387 | //unset($object->fields['fk_project']); // Hide field already shown in banner |
| 388 | 388 | //unset($object->fields['fk_soc']); // Hide field already shown in banner |
| 389 | - $object->fields['label']['visible']=0; // Already in banner |
|
| 390 | - include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php'; |
|
| 389 | + $object->fields['label']['visible'] = 0; // Already in banner |
|
| 390 | + include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_view.tpl.php'; |
|
| 391 | 391 | |
| 392 | 392 | // Other attributes. Fields from hook formObjectOptions and Extrafields. |
| 393 | - include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php'; |
|
| 393 | + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php'; |
|
| 394 | 394 | |
| 395 | 395 | print '</table>'; |
| 396 | 396 | print '</div>'; |
@@ -409,16 +409,16 @@ discard block |
||
| 409 | 409 | // Show object lines |
| 410 | 410 | $result = $object->getLinesArray(); |
| 411 | 411 | |
| 412 | - print ' <form name="addproduct" id="addproduct" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . (($action != 'editline') ? '' : '#line_' . GETPOST('lineid', 'int')) . '" method="POST"> |
|
| 413 | - <input type="hidden" name="token" value="' . newToken() . '"> |
|
| 414 | - <input type="hidden" name="action" value="' . (($action != 'editline') ? 'addline' : 'updateline') . '"> |
|
| 412 | + print ' <form name="addproduct" id="addproduct" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.(($action != 'editline') ? '' : '#line_'.GETPOST('lineid', 'int')).'" method="POST"> |
|
| 413 | + <input type="hidden" name="token" value="' . newToken().'"> |
|
| 414 | + <input type="hidden" name="action" value="' . (($action != 'editline') ? 'addline' : 'updateline').'"> |
|
| 415 | 415 | <input type="hidden" name="mode" value=""> |
| 416 | 416 | <input type="hidden" name="page_y" value=""> |
| 417 | - <input type="hidden" name="id" value="' . $object->id . '"> |
|
| 417 | + <input type="hidden" name="id" value="' . $object->id.'"> |
|
| 418 | 418 | '; |
| 419 | 419 | |
| 420 | 420 | if (!empty($conf->use_javascript_ajax) && $object->status == 0) { |
| 421 | - include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php'; |
|
| 421 | + include DOL_DOCUMENT_ROOT.'/core/tpl/ajaxrow.tpl.php'; |
|
| 422 | 422 | } |
| 423 | 423 | |
| 424 | 424 | print '<div class="div-table-responsive-no-min">'; |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | // Buttons for actions |
| 456 | 456 | |
| 457 | 457 | if ($action != 'presend' && $action != 'editline') { |
| 458 | - print '<div class="tabsAction">' . "\n"; |
|
| 458 | + print '<div class="tabsAction">'."\n"; |
|
| 459 | 459 | $parameters = array(); |
| 460 | 460 | $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook |
| 461 | 461 | if ($reshook < 0) { |
@@ -465,17 +465,17 @@ discard block |
||
| 465 | 465 | if (empty($reshook)) { |
| 466 | 466 | // Back to draft |
| 467 | 467 | if ($object->status == $object::STATUS_VALIDATED) { |
| 468 | - print dolGetButtonAction($langs->trans('SetToDraft'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=confirm_setdraft&confirm=yes&token=' . newToken(), '', $permissiontoadd); |
|
| 468 | + print dolGetButtonAction($langs->trans('SetToDraft'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=confirm_setdraft&confirm=yes&token='.newToken(), '', $permissiontoadd); |
|
| 469 | 469 | } |
| 470 | 470 | |
| 471 | - print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit&token=' . newToken(), '', $permissiontoadd); |
|
| 471 | + print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=edit&token='.newToken(), '', $permissiontoadd); |
|
| 472 | 472 | |
| 473 | - print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=clone&token=' . newToken(), '', $permissiontoadd); |
|
| 473 | + print dolGetButtonAction($langs->trans('ToClone'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=clone&token='.newToken(), '', $permissiontoadd); |
|
| 474 | 474 | |
| 475 | 475 | // Delete (need delete permission, or if draft, just need create/modify permission) |
| 476 | - print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissiontodelete); |
|
| 476 | + print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'].'?id='.$object->id.'&action=delete&token='.newToken(), '', $permissiontodelete); |
|
| 477 | 477 | } |
| 478 | - print '</div>' . "\n"; |
|
| 478 | + print '</div>'."\n"; |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | 481 | |
@@ -493,12 +493,12 @@ discard block |
||
| 493 | 493 | // Documents |
| 494 | 494 | if ($includedocgeneration) { |
| 495 | 495 | $objref = dol_sanitizeFileName($object->ref); |
| 496 | - $relativepath = $objref . '/' . $objref . '.pdf'; |
|
| 497 | - $filedir = $conf->hrm->dir_output . '/' . $object->element . '/' . $objref; |
|
| 498 | - $urlsource = $_SERVER["PHP_SELF"] . "?id=" . $object->id; |
|
| 496 | + $relativepath = $objref.'/'.$objref.'.pdf'; |
|
| 497 | + $filedir = $conf->hrm->dir_output.'/'.$object->element.'/'.$objref; |
|
| 498 | + $urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id; |
|
| 499 | 499 | $genallowed = $user->rights->hrm->job->read; // If you can read, you can build the PDF to read content |
| 500 | 500 | $delallowed = $user->rights->hrm->job->write; // If you can create/edit, you can remove a file on card |
| 501 | - print $formfile->showdocuments('hrm:Job', $object->element . '/' . $objref, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0, '', '', '', $langs->defaultlang); |
|
| 501 | + print $formfile->showdocuments('hrm:Job', $object->element.'/'.$objref, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 1, 0, 0, 28, 0, '', '', '', $langs->defaultlang); |
|
| 502 | 502 | } |
| 503 | 503 | |
| 504 | 504 | // Show links to link elements |
@@ -513,9 +513,9 @@ discard block |
||
| 513 | 513 | $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/hrm/job_agenda.php?id='.$object->id); |
| 514 | 514 | |
| 515 | 515 | // List of actions on element |
| 516 | - include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php'; |
|
| 516 | + include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php'; |
|
| 517 | 517 | $formactions = new FormActions($db); |
| 518 | - $somethingshown = $formactions->showactions($object, $object->element . '@' . $object->module, (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1, '', $MAXEVENT, '', $morehtmlcenter); |
|
| 518 | + $somethingshown = $formactions->showactions($object, $object->element.'@'.$object->module, (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1, '', $MAXEVENT, '', $morehtmlcenter); |
|
| 519 | 519 | |
| 520 | 520 | print '</div></div>'; |
| 521 | 521 | } |
@@ -524,9 +524,9 @@ discard block |
||
| 524 | 524 | $modelmail = 'job'; |
| 525 | 525 | $defaulttopic = 'InformationMessage'; |
| 526 | 526 | $diroutput = $conf->hrm->dir_output; |
| 527 | - $trackid = 'job' . $object->id; |
|
| 527 | + $trackid = 'job'.$object->id; |
|
| 528 | 528 | |
| 529 | - include DOL_DOCUMENT_ROOT . '/core/tpl/card_presend.tpl.php'; |
|
| 529 | + include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php'; |
|
| 530 | 530 | } |
| 531 | 531 | |
| 532 | 532 | // End of page |
@@ -113,8 +113,12 @@ |
||
| 113 | 113 | //if ($user->socid > 0) $socid = $user->socid; |
| 114 | 114 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 115 | 115 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 116 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 117 | -if (!$permissiontoread || ($action === 'create' && !$permissiontoadd)) accessforbidden(); |
|
| 116 | +if (empty($conf->hrm->enabled)) { |
|
| 117 | + accessforbidden(); |
|
| 118 | +} |
|
| 119 | +if (!$permissiontoread || ($action === 'create' && !$permissiontoadd)) { |
|
| 120 | + accessforbidden(); |
|
| 121 | +} |
|
| 118 | 122 | |
| 119 | 123 | $langs->loadLangs(array("hrm", "other")); |
| 120 | 124 | |
@@ -29,19 +29,19 @@ discard block |
||
| 29 | 29 | // Load Dolibarr environment |
| 30 | 30 | require '../main.inc.php'; |
| 31 | 31 | |
| 32 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php'; |
|
| 33 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php'; |
|
| 34 | -require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php'; |
|
| 35 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/position.class.php'; |
|
| 36 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/job.class.php'; |
|
| 37 | -require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_position.lib.php'; |
|
| 32 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php'; |
|
| 33 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; |
|
| 34 | +require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php'; |
|
| 35 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/position.class.php'; |
|
| 36 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/job.class.php'; |
|
| 37 | +require_once DOL_DOCUMENT_ROOT.'/hrm/lib/hrm_position.lib.php'; |
|
| 38 | 38 | //dol_include_once('/hrm/position.php'); |
| 39 | 39 | |
| 40 | 40 | // Get Parameters |
| 41 | -$action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ... |
|
| 41 | +$action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ... |
|
| 42 | 42 | $backtopage = GETPOST('backtopage', 'alpha'); |
| 43 | 43 | $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha'); |
| 44 | -$id = GETPOST('id', 'int'); |
|
| 44 | +$id = GETPOST('id', 'int'); |
|
| 45 | 45 | |
| 46 | 46 | // Initialize technical objects |
| 47 | 47 | $form = new Form($db); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $permissiontoadd = $user->rights->hrm->all->write; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php |
| 57 | 57 | $permissiontodelete = $user->rights->hrm->all->delete; |
| 58 | 58 | $permissiondellink = $user->rights->hrm->all->write; // Used by the include of actions_dellink.inc.php |
| 59 | -$upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1] . '/position'; |
|
| 59 | +$upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1].'/position'; |
|
| 60 | 60 | |
| 61 | 61 | // Security check (enable the most restrictive one) |
| 62 | 62 | //if ($user->socid > 0) accessforbidden(); |
@@ -71,10 +71,10 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | |
| 73 | 73 | // Get parameters |
| 74 | -$id = GETPOST('id', 'int'); |
|
| 74 | +$id = GETPOST('id', 'int'); |
|
| 75 | 75 | $fk_job = GETPOST('fk_job', 'int'); |
| 76 | 76 | |
| 77 | -$ref = GETPOST('ref', 'alpha'); |
|
| 77 | +$ref = GETPOST('ref', 'alpha'); |
|
| 78 | 78 | $action = GETPOST('action', 'aZ09'); |
| 79 | 79 | $confirm = GETPOST('confirm', 'alpha'); |
| 80 | 80 | $cancel = GETPOST('cancel', 'aZ09'); |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | $extrafields = new ExtraFields($db); |
| 94 | 94 | |
| 95 | -$diroutputmassaction = $conf->hrm->dir_output . '/temp/massgeneration/' . $user->id; |
|
| 95 | +$diroutputmassaction = $conf->hrm->dir_output.'/temp/massgeneration/'.$user->id; |
|
| 96 | 96 | $hookmanager->initHooks(array('positioncard', 'globalcard')); // Note that conf->hooks_modules contains array |
| 97 | 97 | |
| 98 | 98 | // Fetch optionals attributes and labels |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | $search_all = GETPOST("search_all", 'alpha'); |
| 105 | 105 | $search = array(); |
| 106 | 106 | foreach ($object->fields as $key => $val) { |
| 107 | - if (GETPOST('search_' . $key, 'alpha')) { |
|
| 108 | - $search[$key] = GETPOST('search_' . $key, 'alpha'); |
|
| 107 | + if (GETPOST('search_'.$key, 'alpha')) { |
|
| 108 | + $search[$key] = GETPOST('search_'.$key, 'alpha'); |
|
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | 111 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | // Load object |
| 117 | -include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once. |
|
| 117 | +include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once. |
|
| 118 | 118 | |
| 119 | 119 | |
| 120 | 120 | /* |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) { |
| 138 | 138 | $backtopage = $backurlforlist; |
| 139 | 139 | } else { |
| 140 | - $backtopage = dol_buildpath('/hrm/position_card.php', 1) . '?id=' . ($id > 0 ? $id : '__ID__'); |
|
| 140 | + $backtopage = dol_buildpath('/hrm/position_card.php', 1).'?id='.($id > 0 ? $id : '__ID__'); |
|
| 141 | 141 | } |
| 142 | 142 | } |
| 143 | 143 | } |
@@ -145,19 +145,19 @@ discard block |
||
| 145 | 145 | $triggermodname = 'HRM_POSITION_MODIFY'; // Name of trigger action code to execute when we modify record |
| 146 | 146 | |
| 147 | 147 | // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen |
| 148 | - include DOL_DOCUMENT_ROOT . '/core/actions_addupdatedelete.inc.php'; |
|
| 148 | + include DOL_DOCUMENT_ROOT.'/core/actions_addupdatedelete.inc.php'; |
|
| 149 | 149 | |
| 150 | 150 | // Actions when linking object each other |
| 151 | - include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; |
|
| 151 | + include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; |
|
| 152 | 152 | |
| 153 | 153 | // Actions when printing a doc from card |
| 154 | - include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php'; |
|
| 154 | + include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php'; |
|
| 155 | 155 | |
| 156 | 156 | // Action to move up and down lines of object |
| 157 | 157 | //include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php'; |
| 158 | 158 | |
| 159 | 159 | // Action to build doc |
| 160 | - include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php'; |
|
| 160 | + include DOL_DOCUMENT_ROOT.'/core/actions_builddoc.inc.php'; |
|
| 161 | 161 | |
| 162 | 162 | if ($action == 'set_thirdparty' && $permissiontoadd) { |
| 163 | 163 | $object->setValueFrom('fk_soc', GETPOST('fk_soc', 'int'), '', '', 'date', '', $user, $triggermodname); |
@@ -169,8 +169,8 @@ discard block |
||
| 169 | 169 | // Actions to send emails |
| 170 | 170 | $triggersendname = 'HRM_POSITION_SENTBYMAIL'; |
| 171 | 171 | $autocopy = 'MAIN_MAIL_AUTOCOPY_POSITION_TO'; |
| 172 | - $trackid = 'position' . $object->id; |
|
| 173 | - include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php'; |
|
| 172 | + $trackid = 'position'.$object->id; |
|
| 173 | + include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php'; |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | |
@@ -214,36 +214,36 @@ discard block |
||
| 214 | 214 | |
| 215 | 215 | // Part to edit record |
| 216 | 216 | if (($id || $ref) && $action == 'edit') { |
| 217 | - print load_fiche_titre($langs->trans("Position"), '', 'object_' . $object->picto); |
|
| 217 | + print load_fiche_titre($langs->trans("Position"), '', 'object_'.$object->picto); |
|
| 218 | 218 | |
| 219 | - print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '">'; |
|
| 220 | - print '<input type="hidden" name="token" value="' . newToken() . '">'; |
|
| 219 | + print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'">'; |
|
| 220 | + print '<input type="hidden" name="token" value="'.newToken().'">'; |
|
| 221 | 221 | print '<input type="hidden" name="action" value="update">'; |
| 222 | - print '<input type="hidden" name="id" value="' . $object->id . '">'; |
|
| 222 | + print '<input type="hidden" name="id" value="'.$object->id.'">'; |
|
| 223 | 223 | |
| 224 | 224 | if ($backtopage) { |
| 225 | - print '<input type="hidden" name="backtopage" value="' . $backtopage . '">'; |
|
| 225 | + print '<input type="hidden" name="backtopage" value="'.$backtopage.'">'; |
|
| 226 | 226 | } |
| 227 | 227 | if ($backtopageforcancel) { |
| 228 | - print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">'; |
|
| 228 | + print '<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.'">'; |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | print dol_get_fiche_head(); |
| 232 | 232 | |
| 233 | - print '<table class="border centpercent tableforfieldedit">' . "\n"; |
|
| 233 | + print '<table class="border centpercent tableforfieldedit">'."\n"; |
|
| 234 | 234 | |
| 235 | 235 | // Common attributes |
| 236 | - include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php'; |
|
| 236 | + include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_edit.tpl.php'; |
|
| 237 | 237 | |
| 238 | 238 | // Other attributes |
| 239 | - include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_edit.tpl.php'; |
|
| 239 | + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_edit.tpl.php'; |
|
| 240 | 240 | |
| 241 | 241 | print '</table>'; |
| 242 | 242 | |
| 243 | 243 | print dol_get_fiche_end(); |
| 244 | 244 | |
| 245 | - print '<div class="center"><input type="submit" class="button button-save" name="save" value="' . $langs->trans("Save") . '">'; |
|
| 246 | - print ' <input type="submit" class="button button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">'; |
|
| 245 | + print '<div class="center"><input type="submit" class="button button-save" name="save" value="'.$langs->trans("Save").'">'; |
|
| 246 | + print ' <input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">'; |
|
| 247 | 247 | print '</div>'; |
| 248 | 248 | |
| 249 | 249 | print '</form>'; |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | |
| 263 | 263 | // Confirmation to delete |
| 264 | 264 | if ($action == 'delete') { |
| 265 | - $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeletePosition'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1); |
|
| 265 | + $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id, $langs->trans('DeletePosition'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | // Call Hook formConfirm |
@@ -297,18 +297,18 @@ discard block |
||
| 297 | 297 | print '<div class="fichecenter">'; |
| 298 | 298 | print '<div class="fichehalfleft">'; |
| 299 | 299 | print '<div class="underbanner clearboth"></div>'; |
| 300 | - print '<table class="border centpercent tableforfield">' . "\n"; |
|
| 300 | + print '<table class="border centpercent tableforfield">'."\n"; |
|
| 301 | 301 | |
| 302 | 302 | // Common attributes |
| 303 | 303 | //$keyforbreak='fieldkeytoswitchonsecondcolumn'; // We change column just before this field |
| 304 | 304 | //unset($object->fields['fk_project']); // Hide field already shown in banner |
| 305 | 305 | //unset($object->fields['fk_soc']); // Hide field already shown in banner |
| 306 | - $object->fields['fk_user']['visible']=0; // Already in banner |
|
| 307 | - $object->fields['fk_job']['visible']=0; // Already in banner |
|
| 308 | - include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php'; |
|
| 306 | + $object->fields['fk_user']['visible'] = 0; // Already in banner |
|
| 307 | + $object->fields['fk_job']['visible'] = 0; // Already in banner |
|
| 308 | + include DOL_DOCUMENT_ROOT.'/core/tpl/commonfields_view.tpl.php'; |
|
| 309 | 309 | |
| 310 | 310 | // Other attributes. Fields from hook formObjectOptions and Extrafields. |
| 311 | - include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php'; |
|
| 311 | + include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php'; |
|
| 312 | 312 | |
| 313 | 313 | print '</table>'; |
| 314 | 314 | print '</div>'; |
@@ -327,10 +327,10 @@ discard block |
||
| 327 | 327 | $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook |
| 328 | 328 | |
| 329 | 329 | |
| 330 | - print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit&token=' . newToken(), '', $permissiontoadd); |
|
| 330 | + print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=edit&token='.newToken(), '', $permissiontoadd); |
|
| 331 | 331 | |
| 332 | 332 | // Delete (need delete permission, or if draft, just need create/modify permission) |
| 333 | - print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissiontodelete); |
|
| 333 | + print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'].'?id='.$object->id.'&action=delete&token='.newToken(), '', $permissiontodelete); |
|
| 334 | 334 | } |
| 335 | 335 | } |
| 336 | 336 | |
@@ -368,10 +368,10 @@ discard block |
||
| 368 | 368 | //} |
| 369 | 369 | |
| 370 | 370 | |
| 371 | -print '</table>' . "\n"; |
|
| 372 | -print '</div>' . "\n"; |
|
| 371 | +print '</table>'."\n"; |
|
| 372 | +print '</div>'."\n"; |
|
| 373 | 373 | |
| 374 | -print '</form>' . "\n"; |
|
| 374 | +print '</form>'."\n"; |
|
| 375 | 375 | |
| 376 | 376 | |
| 377 | 377 | if ($action !== 'edit' && $action !== 'create') { |
@@ -389,9 +389,9 @@ discard block |
||
| 389 | 389 | $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/hrm/position_agenda.php?id='.$object->id); |
| 390 | 390 | |
| 391 | 391 | // List of actions on element |
| 392 | - include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php'; |
|
| 392 | + include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php'; |
|
| 393 | 393 | $formactions = new FormActions($db); |
| 394 | - $somethingshown = $formactions->showactions($object, $object->element . '@' . $object->module, (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1, '', $MAXEVENT, '', $morehtmlcenter); |
|
| 394 | + $somethingshown = $formactions->showactions($object, $object->element.'@'.$object->module, (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1, '', $MAXEVENT, '', $morehtmlcenter); |
|
| 395 | 395 | |
| 396 | 396 | print '</div></div>'; |
| 397 | 397 | } |
@@ -3647,7 +3647,9 @@ discard block |
||
| 3647 | 3647 | // Hook for explicitly set the targettype if it must be differtent than $this->element |
| 3648 | 3648 | $reshook = $hookmanager->executeHooks('setLinkedObjectSourceTargetType', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks |
| 3649 | 3649 | if ($reshook > 0) { |
| 3650 | - if (!empty($hookmanager->resArray['targettype'])) $targettype = $hookmanager->resArray['targettype']; |
|
| 3650 | + if (!empty($hookmanager->resArray['targettype'])) { |
|
| 3651 | + $targettype = $hookmanager->resArray['targettype']; |
|
| 3652 | + } |
|
| 3651 | 3653 | } |
| 3652 | 3654 | |
| 3653 | 3655 | $this->db->begin(); |
@@ -3729,10 +3731,18 @@ discard block |
||
| 3729 | 3731 | // Hook for explicitly set the targettype if it must be differtent than $this->element |
| 3730 | 3732 | $reshook = $hookmanager->executeHooks('setLinkedObjectSourceTargetType', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks |
| 3731 | 3733 | if ($reshook > 0) { |
| 3732 | - if (!empty($hookmanager->resArray['sourcetype'])) $sourcetype = $hookmanager->resArray['sourcetype']; |
|
| 3733 | - if (!empty($hookmanager->resArray['sourceid'])) $sourceid = $hookmanager->resArray['sourceid']; |
|
| 3734 | - if (!empty($hookmanager->resArray['targettype'])) $targettype = $hookmanager->resArray['targettype']; |
|
| 3735 | - if (!empty($hookmanager->resArray['targetid'])) $targetid = $hookmanager->resArray['targetid']; |
|
| 3734 | + if (!empty($hookmanager->resArray['sourcetype'])) { |
|
| 3735 | + $sourcetype = $hookmanager->resArray['sourcetype']; |
|
| 3736 | + } |
|
| 3737 | + if (!empty($hookmanager->resArray['sourceid'])) { |
|
| 3738 | + $sourceid = $hookmanager->resArray['sourceid']; |
|
| 3739 | + } |
|
| 3740 | + if (!empty($hookmanager->resArray['targettype'])) { |
|
| 3741 | + $targettype = $hookmanager->resArray['targettype']; |
|
| 3742 | + } |
|
| 3743 | + if (!empty($hookmanager->resArray['targetid'])) { |
|
| 3744 | + $targetid = $hookmanager->resArray['targetid']; |
|
| 3745 | + } |
|
| 3736 | 3746 | } |
| 3737 | 3747 | |
| 3738 | 3748 | if (!empty($sourceid) && !empty($sourcetype) && empty($targetid)) { |
@@ -6600,7 +6610,9 @@ discard block |
||
| 6600 | 6610 | $showtime = 1; |
| 6601 | 6611 | |
| 6602 | 6612 | // Do not show current date when field not required (see selectDate() method) |
| 6603 | - if (!$required && $value == '') $value = '-1'; |
|
| 6613 | + if (!$required && $value == '') { |
|
| 6614 | + $value = '-1'; |
|
| 6615 | + } |
|
| 6604 | 6616 | |
| 6605 | 6617 | // TODO Must also support $moreparam |
| 6606 | 6618 | $out = $form->selectDate($value, $keyprefix.$key.$keysuffix, $showtime, $showtime, $required, '', 1, (($keyprefix != 'search_' && $keyprefix != 'search_options_') ? 1 : 0), 0, 1, '', '', '', 1, '', '', 'tzuserrel'); |
@@ -841,16 +841,16 @@ discard block |
||
| 841 | 841 | } |
| 842 | 842 | $labelextra = $langs->trans((string) $extrafields->attributes[$this->table_element]['label'][$key]); |
| 843 | 843 | if ($extrafields->attributes[$this->table_element]['type'][$key] == 'separate') { |
| 844 | - $datas[$key]= '<br><b><u>'. $labelextra . '</u></b>'; |
|
| 844 | + $datas[$key] = '<br><b><u>'.$labelextra.'</u></b>'; |
|
| 845 | 845 | } else { |
| 846 | - $value = (empty($this->array_options['options_' . $key]) ? '' : $this->array_options['options_' . $key]); |
|
| 847 | - $datas[$key]= '<br><b>'. $labelextra . ':</b> ' . $extrafields->showOutputField($key, $value, '', $this->table_element); |
|
| 846 | + $value = (empty($this->array_options['options_'.$key]) ? '' : $this->array_options['options_'.$key]); |
|
| 847 | + $datas[$key] = '<br><b>'.$labelextra.':</b> '.$extrafields->showOutputField($key, $value, '', $this->table_element); |
|
| 848 | 848 | $count++; |
| 849 | 849 | } |
| 850 | 850 | } |
| 851 | 851 | } |
| 852 | 852 | |
| 853 | - $hookmanager->initHooks(array($this->element . 'dao')); |
|
| 853 | + $hookmanager->initHooks(array($this->element.'dao')); |
|
| 854 | 854 | $parameters = array( |
| 855 | 855 | 'tooltipcontentarray' => &$datas, |
| 856 | 856 | 'params' => $params, |
@@ -1341,7 +1341,7 @@ discard block |
||
| 1341 | 1341 | if ($source == 'external' || $source == 'thirdparty') { |
| 1342 | 1342 | $sql .= " AND tc.source = 'external'"; |
| 1343 | 1343 | if ($status >= 0) { |
| 1344 | - $sql .= " AND t.statut = ".((int) $status); // t is llx_socpeople |
|
| 1344 | + $sql .= " AND t.statut = ".((int) $status); // t is llx_socpeople |
|
| 1345 | 1345 | } |
| 1346 | 1346 | } |
| 1347 | 1347 | $sql .= " AND tc.active = 1"; |
@@ -1700,8 +1700,8 @@ discard block |
||
| 1700 | 1700 | if ($idtofetch) { |
| 1701 | 1701 | $thirdparty = new Societe($this->db); |
| 1702 | 1702 | $result = $thirdparty->fetch($idtofetch); |
| 1703 | - if ($result<0) { |
|
| 1704 | - $this->errors=array_merge($this->errors, $thirdparty->errors); |
|
| 1703 | + if ($result < 0) { |
|
| 1704 | + $this->errors = array_merge($this->errors, $thirdparty->errors); |
|
| 1705 | 1705 | } |
| 1706 | 1706 | $this->thirdparty = $thirdparty; |
| 1707 | 1707 | |
@@ -2003,9 +2003,9 @@ discard block |
||
| 2003 | 2003 | if ($trigkey) { |
| 2004 | 2004 | $oldvalue = null; |
| 2005 | 2005 | |
| 2006 | - $sql = "SELECT " . $field; |
|
| 2007 | - $sql .= " FROM " . MAIN_DB_PREFIX . $table; |
|
| 2008 | - $sql .= " WHERE " . $id_field . " = " . ((int) $id); |
|
| 2006 | + $sql = "SELECT ".$field; |
|
| 2007 | + $sql .= " FROM ".MAIN_DB_PREFIX.$table; |
|
| 2008 | + $sql .= " WHERE ".$id_field." = ".((int) $id); |
|
| 2009 | 2009 | |
| 2010 | 2010 | $resql = $this->db->query($sql); |
| 2011 | 2011 | if ($resql) { |
@@ -2135,7 +2135,7 @@ discard block |
||
| 2135 | 2135 | } |
| 2136 | 2136 | $restrictiononfksoc = empty($this->restrictiononfksoc) ? 0 : $this->restrictiononfksoc; |
| 2137 | 2137 | $sql = "SELECT MAX(te.".$fieldid.")"; |
| 2138 | - $sql .= " FROM ".(empty($nodbprefix) ?$this->db->prefix():'').$this->table_element." as te"; |
|
| 2138 | + $sql .= " FROM ".(empty($nodbprefix) ? $this->db->prefix() : '').$this->table_element." as te"; |
|
| 2139 | 2139 | if (isset($this->ismultientitymanaged) && !is_numeric($this->ismultientitymanaged)) { |
| 2140 | 2140 | $tmparray = explode('@', $this->ismultientitymanaged); |
| 2141 | 2141 | $sql .= ", ".$this->db->prefix().$tmparray[1]." as ".($tmparray[1] == 'societe' ? 's' : 'parenttable'); // If we need to link to this table to limit select to entity |
@@ -2205,7 +2205,7 @@ discard block |
||
| 2205 | 2205 | $this->ref_previous = $row[0]; |
| 2206 | 2206 | |
| 2207 | 2207 | $sql = "SELECT MIN(te.".$fieldid.")"; |
| 2208 | - $sql .= " FROM ".(empty($nodbprefix) ?$this->db->prefix():'').$this->table_element." as te"; |
|
| 2208 | + $sql .= " FROM ".(empty($nodbprefix) ? $this->db->prefix() : '').$this->table_element." as te"; |
|
| 2209 | 2209 | if (isset($this->ismultientitymanaged) && !is_numeric($this->ismultientitymanaged)) { |
| 2210 | 2210 | $tmparray = explode('@', $this->ismultientitymanaged); |
| 2211 | 2211 | $sql .= ", ".$this->db->prefix().$tmparray[1]." as ".($tmparray[1] == 'societe' ? 's' : 'parenttable'); // If we need to link to this table to limit select to entity |
@@ -2359,7 +2359,7 @@ discard block |
||
| 2359 | 2359 | // Triggers |
| 2360 | 2360 | if (!$error && !$notrigger) { |
| 2361 | 2361 | // Call triggers |
| 2362 | - $result = $this->call_trigger(strtoupper($this->element) . '_MODIFY', $user); |
|
| 2362 | + $result = $this->call_trigger(strtoupper($this->element).'_MODIFY', $user); |
|
| 2363 | 2363 | if ($result < 0) { |
| 2364 | 2364 | $error++; |
| 2365 | 2365 | } //Do also here what you must do to rollback action if trigger fail |
@@ -2724,7 +2724,7 @@ discard block |
||
| 2724 | 2724 | $sql = 'UPDATE '.$this->db->prefix().$this->table_element; |
| 2725 | 2725 | $sql .= " SET ".$fieldname." = ".(($id > 0 || $id == '0') ? ((int) $id) : 'NULL'); |
| 2726 | 2726 | if (in_array($this->table_element, array('propal', 'commande', 'societe'))) { |
| 2727 | - $sql .= " , deposit_percent = " . (empty($deposit_percent) ? 'NULL' : "'".$this->db->escape($deposit_percent)."'"); |
|
| 2727 | + $sql .= " , deposit_percent = ".(empty($deposit_percent) ? 'NULL' : "'".$this->db->escape($deposit_percent)."'"); |
|
| 2728 | 2728 | } |
| 2729 | 2729 | $sql .= ' WHERE rowid='.((int) $this->id); |
| 2730 | 2730 | |
@@ -3073,10 +3073,10 @@ discard block |
||
| 3073 | 3073 | $sql = "SELECT count(rowid) FROM ".$this->db->prefix().$this->table_element_line; |
| 3074 | 3074 | $sql .= " WHERE ".$this->fk_element." = ".((int) $this->id); |
| 3075 | 3075 | if (!$renum) { |
| 3076 | - $sql .= " AND " . $fieldposition . " = 0"; |
|
| 3076 | + $sql .= " AND ".$fieldposition." = 0"; |
|
| 3077 | 3077 | } |
| 3078 | 3078 | if ($renum) { |
| 3079 | - $sql .= " AND " . $fieldposition . " <> 0"; |
|
| 3079 | + $sql .= " AND ".$fieldposition." <> 0"; |
|
| 3080 | 3080 | } |
| 3081 | 3081 | |
| 3082 | 3082 | dol_syslog(get_class($this)."::line_order", LOG_DEBUG); |
@@ -3097,7 +3097,7 @@ discard block |
||
| 3097 | 3097 | if ($fk_parent_line) { |
| 3098 | 3098 | $sql .= ' AND fk_parent_line IS NULL'; |
| 3099 | 3099 | } |
| 3100 | - $sql .= " ORDER BY " . $fieldposition . " ASC, rowid " . $rowidorder; |
|
| 3100 | + $sql .= " ORDER BY ".$fieldposition." ASC, rowid ".$rowidorder; |
|
| 3101 | 3101 | |
| 3102 | 3102 | dol_syslog(get_class($this)."::line_order search all parent lines", LOG_DEBUG); |
| 3103 | 3103 | $resql = $this->db->query($sql); |
@@ -3148,7 +3148,7 @@ discard block |
||
| 3148 | 3148 | $sql = "SELECT rowid FROM ".$this->db->prefix().$this->table_element_line; |
| 3149 | 3149 | $sql .= " WHERE ".$this->fk_element." = ".((int) $this->id); |
| 3150 | 3150 | $sql .= ' AND fk_parent_line = '.((int) $id); |
| 3151 | - $sql .= " ORDER BY " . $fieldposition . " ASC"; |
|
| 3151 | + $sql .= " ORDER BY ".$fieldposition." ASC"; |
|
| 3152 | 3152 | |
| 3153 | 3153 | dol_syslog(get_class($this)."::getChildrenOfLine search children lines for line ".$id, LOG_DEBUG); |
| 3154 | 3154 | $resql = $this->db->query($sql); |
@@ -3231,8 +3231,8 @@ discard block |
||
| 3231 | 3231 | dol_print_error($this->db); |
| 3232 | 3232 | return -1; |
| 3233 | 3233 | } else { |
| 3234 | - $parameters=array('rowid'=>$rowid, 'rang'=>$rang, 'fieldposition' => $fieldposition); |
|
| 3235 | - $action=''; |
|
| 3234 | + $parameters = array('rowid'=>$rowid, 'rang'=>$rang, 'fieldposition' => $fieldposition); |
|
| 3235 | + $action = ''; |
|
| 3236 | 3236 | $reshook = $hookmanager->executeHooks('afterRankOfLineUpdate', $parameters, $this, $action); |
| 3237 | 3237 | return 1; |
| 3238 | 3238 | } |
@@ -3271,7 +3271,7 @@ discard block |
||
| 3271 | 3271 | |
| 3272 | 3272 | $sql = "UPDATE ".$this->db->prefix().$this->table_element_line." SET ".$fieldposition." = ".((int) $rang); |
| 3273 | 3273 | $sql .= " WHERE ".$this->fk_element." = ".((int) $this->id); |
| 3274 | - $sql .= " AND " . $fieldposition . " = " . ((int) ($rang - 1)); |
|
| 3274 | + $sql .= " AND ".$fieldposition." = ".((int) ($rang - 1)); |
|
| 3275 | 3275 | if ($this->db->query($sql)) { |
| 3276 | 3276 | $sql = "UPDATE ".$this->db->prefix().$this->table_element_line." SET ".$fieldposition." = ".((int) ($rang - 1)); |
| 3277 | 3277 | $sql .= ' WHERE rowid = '.((int) $rowid); |
@@ -3302,7 +3302,7 @@ discard block |
||
| 3302 | 3302 | |
| 3303 | 3303 | $sql = "UPDATE ".$this->db->prefix().$this->table_element_line." SET ".$fieldposition." = ".((int) $rang); |
| 3304 | 3304 | $sql .= " WHERE ".$this->fk_element." = ".((int) $this->id); |
| 3305 | - $sql .= " AND " . $fieldposition . " = " . ((int) ($rang + 1)); |
|
| 3305 | + $sql .= " AND ".$fieldposition." = ".((int) ($rang + 1)); |
|
| 3306 | 3306 | if ($this->db->query($sql)) { |
| 3307 | 3307 | $sql = "UPDATE ".$this->db->prefix().$this->table_element_line." SET ".$fieldposition." = ".((int) ($rang + 1)); |
| 3308 | 3308 | $sql .= ' WHERE rowid = '.((int) $rowid); |
@@ -3328,7 +3328,7 @@ discard block |
||
| 3328 | 3328 | $fieldposition = 'position'; |
| 3329 | 3329 | } |
| 3330 | 3330 | |
| 3331 | - $sql = "SELECT " . $fieldposition . " FROM ".$this->db->prefix().$this->table_element_line; |
|
| 3331 | + $sql = "SELECT ".$fieldposition." FROM ".$this->db->prefix().$this->table_element_line; |
|
| 3332 | 3332 | $sql .= " WHERE rowid = ".((int) $rowid); |
| 3333 | 3333 | |
| 3334 | 3334 | dol_syslog(get_class($this)."::getRangOfLine", LOG_DEBUG); |
@@ -3356,7 +3356,7 @@ discard block |
||
| 3356 | 3356 | |
| 3357 | 3357 | $sql = "SELECT rowid FROM ".$this->db->prefix().$this->table_element_line; |
| 3358 | 3358 | $sql .= " WHERE ".$this->fk_element." = ".((int) $this->id); |
| 3359 | - $sql .= " AND " . $fieldposition . " = ".((int) $rang); |
|
| 3359 | + $sql .= " AND ".$fieldposition." = ".((int) $rang); |
|
| 3360 | 3360 | $resql = $this->db->query($sql); |
| 3361 | 3361 | if ($resql) { |
| 3362 | 3362 | $row = $this->db->fetch_row($resql); |
@@ -3473,7 +3473,7 @@ discard block |
||
| 3473 | 3473 | $newsuffix = ''; |
| 3474 | 3474 | } |
| 3475 | 3475 | if (in_array($this->table_element, array('actioncomm', 'adherent', 'advtargetemailing', 'cronjob', 'establishment'))) { |
| 3476 | - $fieldusermod = "fk_user_mod"; |
|
| 3476 | + $fieldusermod = "fk_user_mod"; |
|
| 3477 | 3477 | } elseif ($this->table_element == 'ecm_files') { |
| 3478 | 3478 | $fieldusermod = "fk_user_m"; |
| 3479 | 3479 | } else { |
@@ -3845,7 +3845,7 @@ discard block |
||
| 3845 | 3845 | // It's because an entry for this element may be exist in llx_element_element before this modification (version <=14.2) and ave named only with their element name in fk_source or fk_target. |
| 3846 | 3846 | $coremodule = array('knowledgemanagement', 'partnership', 'workstation', 'ticket', 'recruitment', 'eventorganization', 'asset'); |
| 3847 | 3847 | // Add module part to target type if object has $module property and isn't in core modules. |
| 3848 | - $targettype = ((!empty($this->module) && ! in_array($this->module, $coremodule)) ? $this->module.'_' : '').$this->element; |
|
| 3848 | + $targettype = ((!empty($this->module) && !in_array($this->module, $coremodule)) ? $this->module.'_' : '').$this->element; |
|
| 3849 | 3849 | |
| 3850 | 3850 | $parameters = array('targettype'=>$targettype); |
| 3851 | 3851 | // Hook for explicitly set the targettype if it must be differtent than $this->element |
@@ -3857,19 +3857,19 @@ discard block |
||
| 3857 | 3857 | $this->db->begin(); |
| 3858 | 3858 | $error = 0; |
| 3859 | 3859 | |
| 3860 | - $sql = "INSERT INTO " . $this->db->prefix() . "element_element ("; |
|
| 3860 | + $sql = "INSERT INTO ".$this->db->prefix()."element_element ("; |
|
| 3861 | 3861 | $sql .= "fk_source"; |
| 3862 | 3862 | $sql .= ", sourcetype"; |
| 3863 | 3863 | $sql .= ", fk_target"; |
| 3864 | 3864 | $sql .= ", targettype"; |
| 3865 | 3865 | $sql .= ") VALUES ("; |
| 3866 | 3866 | $sql .= ((int) $origin_id); |
| 3867 | - $sql .= ", '" . $this->db->escape($origin) . "'"; |
|
| 3868 | - $sql .= ", " . ((int) $this->id); |
|
| 3869 | - $sql .= ", '" . $this->db->escape($targettype) . "'"; |
|
| 3867 | + $sql .= ", '".$this->db->escape($origin)."'"; |
|
| 3868 | + $sql .= ", ".((int) $this->id); |
|
| 3869 | + $sql .= ", '".$this->db->escape($targettype)."'"; |
|
| 3870 | 3870 | $sql .= ")"; |
| 3871 | 3871 | |
| 3872 | - dol_syslog(get_class($this) . "::add_object_linked", LOG_DEBUG); |
|
| 3872 | + dol_syslog(get_class($this)."::add_object_linked", LOG_DEBUG); |
|
| 3873 | 3873 | if ($this->db->query($sql)) { |
| 3874 | 3874 | if (!$notrigger) { |
| 3875 | 3875 | // Call trigger |
@@ -4176,20 +4176,20 @@ discard block |
||
| 4176 | 4176 | $this->db->begin(); |
| 4177 | 4177 | $error = 0; |
| 4178 | 4178 | |
| 4179 | - $sql = "UPDATE " . $this->db->prefix() . "element_element SET "; |
|
| 4179 | + $sql = "UPDATE ".$this->db->prefix()."element_element SET "; |
|
| 4180 | 4180 | if ($updatesource) { |
| 4181 | - $sql .= "fk_source = " . ((int) $sourceid); |
|
| 4182 | - $sql .= ", sourcetype = '" . $this->db->escape($sourcetype) . "'"; |
|
| 4183 | - $sql .= " WHERE fk_target = " . ((int) $this->id); |
|
| 4184 | - $sql .= " AND targettype = '" . $this->db->escape($this->element) . "'"; |
|
| 4181 | + $sql .= "fk_source = ".((int) $sourceid); |
|
| 4182 | + $sql .= ", sourcetype = '".$this->db->escape($sourcetype)."'"; |
|
| 4183 | + $sql .= " WHERE fk_target = ".((int) $this->id); |
|
| 4184 | + $sql .= " AND targettype = '".$this->db->escape($this->element)."'"; |
|
| 4185 | 4185 | } elseif ($updatetarget) { |
| 4186 | - $sql .= "fk_target = " . ((int) $targetid); |
|
| 4187 | - $sql .= ", targettype = '" . $this->db->escape($targettype) . "'"; |
|
| 4188 | - $sql .= " WHERE fk_source = " . ((int) $this->id); |
|
| 4189 | - $sql .= " AND sourcetype = '" . $this->db->escape($this->element) . "'"; |
|
| 4186 | + $sql .= "fk_target = ".((int) $targetid); |
|
| 4187 | + $sql .= ", targettype = '".$this->db->escape($targettype)."'"; |
|
| 4188 | + $sql .= " WHERE fk_source = ".((int) $this->id); |
|
| 4189 | + $sql .= " AND sourcetype = '".$this->db->escape($this->element)."'"; |
|
| 4190 | 4190 | } |
| 4191 | 4191 | |
| 4192 | - dol_syslog(get_class($this) . "::updateObjectLinked", LOG_DEBUG); |
|
| 4192 | + dol_syslog(get_class($this)."::updateObjectLinked", LOG_DEBUG); |
|
| 4193 | 4193 | if ($this->db->query($sql)) { |
| 4194 | 4194 | if (!$notrigger) { |
| 4195 | 4195 | // Call trigger |
@@ -4265,25 +4265,25 @@ discard block |
||
| 4265 | 4265 | } |
| 4266 | 4266 | |
| 4267 | 4267 | if (!$error) { |
| 4268 | - $sql = "DELETE FROM " . $this->db->prefix() . "element_element"; |
|
| 4268 | + $sql = "DELETE FROM ".$this->db->prefix()."element_element"; |
|
| 4269 | 4269 | $sql .= " WHERE"; |
| 4270 | 4270 | if ($rowid > 0) { |
| 4271 | - $sql .= " rowid = " . ((int) $rowid); |
|
| 4271 | + $sql .= " rowid = ".((int) $rowid); |
|
| 4272 | 4272 | } else { |
| 4273 | 4273 | if ($deletesource) { |
| 4274 | - $sql .= " fk_source = " . ((int) $sourceid) . " AND sourcetype = '" . $this->db->escape($sourcetype) . "'"; |
|
| 4275 | - $sql .= " AND fk_target = " . ((int) $this->id) . " AND targettype = '" . $this->db->escape($this->element) . "'"; |
|
| 4274 | + $sql .= " fk_source = ".((int) $sourceid)." AND sourcetype = '".$this->db->escape($sourcetype)."'"; |
|
| 4275 | + $sql .= " AND fk_target = ".((int) $this->id)." AND targettype = '".$this->db->escape($this->element)."'"; |
|
| 4276 | 4276 | } elseif ($deletetarget) { |
| 4277 | - $sql .= " fk_target = " . ((int) $targetid) . " AND targettype = '" . $this->db->escape($targettype) . "'"; |
|
| 4278 | - $sql .= " AND fk_source = " . ((int) $this->id) . " AND sourcetype = '" . $this->db->escape($this->element) . "'"; |
|
| 4277 | + $sql .= " fk_target = ".((int) $targetid)." AND targettype = '".$this->db->escape($targettype)."'"; |
|
| 4278 | + $sql .= " AND fk_source = ".((int) $this->id)." AND sourcetype = '".$this->db->escape($this->element)."'"; |
|
| 4279 | 4279 | } else { |
| 4280 | - $sql .= " (fk_source = " . ((int) $this->id) . " AND sourcetype = '" . $this->db->escape($this->element) . "')"; |
|
| 4280 | + $sql .= " (fk_source = ".((int) $this->id)." AND sourcetype = '".$this->db->escape($this->element)."')"; |
|
| 4281 | 4281 | $sql .= " OR"; |
| 4282 | - $sql .= " (fk_target = " . ((int) $this->id) . " AND targettype = '" . $this->db->escape($this->element) . "')"; |
|
| 4282 | + $sql .= " (fk_target = ".((int) $this->id)." AND targettype = '".$this->db->escape($this->element)."')"; |
|
| 4283 | 4283 | } |
| 4284 | 4284 | } |
| 4285 | 4285 | |
| 4286 | - dol_syslog(get_class($this) . "::deleteObjectLinked", LOG_DEBUG); |
|
| 4286 | + dol_syslog(get_class($this)."::deleteObjectLinked", LOG_DEBUG); |
|
| 4287 | 4287 | if (!$this->db->query($sql)) { |
| 4288 | 4288 | $this->error = $this->db->lasterror(); |
| 4289 | 4289 | $this->errors[] = $this->error; |
@@ -4445,14 +4445,14 @@ discard block |
||
| 4445 | 4445 | $sql .= ", date_validation = '".$this->db->idate(dol_now())."'"; |
| 4446 | 4446 | } |
| 4447 | 4447 | $sql .= " WHERE rowid = ".((int) $elementId); |
| 4448 | - $sql .= " AND ".$fieldstatus." <> ".((int) $status); // We avoid update if status already correct |
|
| 4448 | + $sql .= " AND ".$fieldstatus." <> ".((int) $status); // We avoid update if status already correct |
|
| 4449 | 4449 | |
| 4450 | 4450 | dol_syslog(get_class($this)."::setStatut", LOG_DEBUG); |
| 4451 | 4451 | $resql = $this->db->query($sql); |
| 4452 | 4452 | if ($resql) { |
| 4453 | 4453 | $error = 0; |
| 4454 | 4454 | |
| 4455 | - $nb_rows_affected = $this->db->affected_rows($resql); // should be 1 or 0 if status was already correct |
|
| 4455 | + $nb_rows_affected = $this->db->affected_rows($resql); // should be 1 or 0 if status was already correct |
|
| 4456 | 4456 | |
| 4457 | 4457 | if ($nb_rows_affected > 0) { |
| 4458 | 4458 | if (empty($trigkey)) { |
@@ -4606,7 +4606,7 @@ discard block |
||
| 4606 | 4606 | return -1; |
| 4607 | 4607 | } |
| 4608 | 4608 | |
| 4609 | - $arraytoscan = $this->childtables; // array('tablename'=>array('fk_element'=>'parentfield'), ...) or array('tablename'=>array('parent'=>table_parent, 'parentkey'=>'nameoffieldforparentfkkey'), ...) |
|
| 4609 | + $arraytoscan = $this->childtables; // array('tablename'=>array('fk_element'=>'parentfield'), ...) or array('tablename'=>array('parent'=>table_parent, 'parentkey'=>'nameoffieldforparentfkkey'), ...) |
|
| 4610 | 4610 | // For backward compatibility, we check if array is old format array('tablename1', 'tablename2', ...) |
| 4611 | 4611 | $tmparray = array_keys($this->childtables); |
| 4612 | 4612 | if (is_numeric($tmparray[0])) { |
@@ -4619,26 +4619,26 @@ discard block |
||
| 4619 | 4619 | //print $id.'-'.$table.'-'.$elementname.'<br>'; |
| 4620 | 4620 | // Check if element can be deleted |
| 4621 | 4621 | $sql = "SELECT COUNT(*) as nb"; |
| 4622 | - $sql.= " FROM ".$this->db->prefix().$table." as c"; |
|
| 4622 | + $sql .= " FROM ".$this->db->prefix().$table." as c"; |
|
| 4623 | 4623 | if (!empty($element['parent']) && !empty($element['parentkey'])) { |
| 4624 | - $sql.= ", ".$this->db->prefix().$element['parent']." as p"; |
|
| 4624 | + $sql .= ", ".$this->db->prefix().$element['parent']." as p"; |
|
| 4625 | 4625 | } |
| 4626 | 4626 | if (!empty($element['fk_element'])) { |
| 4627 | - $sql.= " WHERE c.".$element['fk_element']." = ".((int) $id); |
|
| 4627 | + $sql .= " WHERE c.".$element['fk_element']." = ".((int) $id); |
|
| 4628 | 4628 | } else { |
| 4629 | - $sql.= " WHERE c.".$this->fk_element." = ".((int) $id); |
|
| 4629 | + $sql .= " WHERE c.".$this->fk_element." = ".((int) $id); |
|
| 4630 | 4630 | } |
| 4631 | 4631 | if (!empty($element['parent']) && !empty($element['parentkey'])) { |
| 4632 | - $sql.= " AND c.".$element['parentkey']." = p.rowid"; |
|
| 4632 | + $sql .= " AND c.".$element['parentkey']." = p.rowid"; |
|
| 4633 | 4633 | } |
| 4634 | 4634 | if (!empty($element['parent']) && !empty($element['parenttypefield']) && !empty($element['parenttypevalue'])) { |
| 4635 | - $sql.= " AND c.".$element['parenttypefield']." = '".$this->db->escape($element['parenttypevalue'])."'"; |
|
| 4635 | + $sql .= " AND c.".$element['parenttypefield']." = '".$this->db->escape($element['parenttypevalue'])."'"; |
|
| 4636 | 4636 | } |
| 4637 | 4637 | if (!empty($entity)) { |
| 4638 | 4638 | if (!empty($element['parent']) && !empty($element['parentkey'])) { |
| 4639 | - $sql.= " AND p.entity = ".((int) $entity); |
|
| 4639 | + $sql .= " AND p.entity = ".((int) $entity); |
|
| 4640 | 4640 | } else { |
| 4641 | - $sql.= " AND c.entity = ".((int) $entity); |
|
| 4641 | + $sql .= " AND c.entity = ".((int) $entity); |
|
| 4642 | 4642 | } |
| 4643 | 4643 | } |
| 4644 | 4644 | |
@@ -4652,9 +4652,9 @@ discard block |
||
| 4652 | 4652 | if (is_numeric($element)) { // very old usage array('table1', 'table2', ...) |
| 4653 | 4653 | $this->errors[] = $langs->transnoentitiesnoconv("ErrorRecordHasAtLeastOneChildOfType", method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref, $table); |
| 4654 | 4654 | } elseif (is_string($element)) { // old usage array('table1' => 'TranslateKey1', 'table2' => 'TranslateKey2', ...) |
| 4655 | - $this->errors[] = $langs->transnoentitiesnoconv("ErrorRecordHasAtLeastOneChildOfType", method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref, $langs->transnoentitiesnoconv($element)); |
|
| 4655 | + $this->errors[] = $langs->transnoentitiesnoconv("ErrorRecordHasAtLeastOneChildOfType", method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref, $langs->transnoentitiesnoconv($element)); |
|
| 4656 | 4656 | } else { // new usage: $element['name']=Translation key |
| 4657 | - $this->errors[] = $langs->transnoentitiesnoconv("ErrorRecordHasAtLeastOneChildOfType", method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref, $langs->transnoentitiesnoconv($element['name'])); |
|
| 4657 | + $this->errors[] = $langs->transnoentitiesnoconv("ErrorRecordHasAtLeastOneChildOfType", method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref, $langs->transnoentitiesnoconv($element['name'])); |
|
| 4658 | 4658 | } |
| 4659 | 4659 | break; // We found at least one, we stop here |
| 4660 | 4660 | } |
@@ -4713,7 +4713,7 @@ discard block |
||
| 4713 | 4713 | */ |
| 4714 | 4714 | public function getTotalDiscount() |
| 4715 | 4715 | { |
| 4716 | - if (!empty($this->table_element_line) ) { |
|
| 4716 | + if (!empty($this->table_element_line)) { |
|
| 4717 | 4717 | $total_discount = 0.00; |
| 4718 | 4718 | |
| 4719 | 4719 | $sql = "SELECT subprice as pu_ht, qty, remise_percent, total_ht"; |
@@ -5665,7 +5665,7 @@ discard block |
||
| 5665 | 5665 | $setsharekey = false; |
| 5666 | 5666 | if ($this->element == 'propal' || $this->element == 'proposal') { |
| 5667 | 5667 | if (getDolGlobalInt("PROPOSAL_ALLOW_ONLINESIGN")) { |
| 5668 | - $setsharekey = true; // feature to make online signature is not set or set to on (default) |
|
| 5668 | + $setsharekey = true; // feature to make online signature is not set or set to on (default) |
|
| 5669 | 5669 | } |
| 5670 | 5670 | if (getDolGlobalInt("PROPOSAL_ALLOW_EXTERNAL_DOWNLOAD")) { |
| 5671 | 5671 | $setsharekey = true; |
@@ -5723,7 +5723,7 @@ discard block |
||
| 5723 | 5723 | $ecmfile->gen_or_uploaded = 'generated'; |
| 5724 | 5724 | $ecmfile->description = ''; // indexed content |
| 5725 | 5725 | $ecmfile->keywords = ''; // keyword content |
| 5726 | - $ecmfile->src_object_type = $this->table_element; // $this->table_name is 'myobject' or 'mymodule_myobject'. |
|
| 5726 | + $ecmfile->src_object_type = $this->table_element; // $this->table_name is 'myobject' or 'mymodule_myobject'. |
|
| 5727 | 5727 | $ecmfile->src_object_id = $this->id; |
| 5728 | 5728 | |
| 5729 | 5729 | $result = $ecmfile->create($user); |
@@ -5775,7 +5775,7 @@ discard block |
||
| 5775 | 5775 | $maxwidthmini = $tmparraysize['maxwidthmini']; |
| 5776 | 5776 | $maxheightmini = $tmparraysize['maxheightmini']; |
| 5777 | 5777 | //$quality = $tmparraysize['quality']; |
| 5778 | - $quality = 50; // For thumbs, we force quality to 50 |
|
| 5778 | + $quality = 50; // For thumbs, we force quality to 50 |
|
| 5779 | 5779 | |
| 5780 | 5780 | // Create small thumbs for company (Ratio is near 16/9) |
| 5781 | 5781 | // Used on logon for example |
@@ -5877,8 +5877,8 @@ discard block |
||
| 5877 | 5877 | // phpcs:enable |
| 5878 | 5878 | global $langs, $conf; |
| 5879 | 5879 | |
| 5880 | - if (!empty(self::TRIGGER_PREFIX) && strpos($triggerName, self::TRIGGER_PREFIX . '_') !== 0) { |
|
| 5881 | - dol_print_error('', 'The trigger "' . $triggerName . '" does not start with "' . self::TRIGGER_PREFIX . '_" as required.'); |
|
| 5880 | + if (!empty(self::TRIGGER_PREFIX) && strpos($triggerName, self::TRIGGER_PREFIX.'_') !== 0) { |
|
| 5881 | + dol_print_error('', 'The trigger "'.$triggerName.'" does not start with "'.self::TRIGGER_PREFIX.'_" as required.'); |
|
| 5882 | 5882 | exit; |
| 5883 | 5883 | } |
| 5884 | 5884 | if (!is_object($langs)) { // If lang was not defined, we set it. It is required by run_triggers(). |
@@ -6176,9 +6176,9 @@ discard block |
||
| 6176 | 6176 | if (!empty($extrafields->attributes[$this->table_element]) && !empty($extrafields->attributes[$this->table_element]['computed'][$key])) { |
| 6177 | 6177 | //var_dump($conf->disable_compute); |
| 6178 | 6178 | if (empty($conf->disable_compute)) { |
| 6179 | - global $objectoffield; // We set a global variable to $objectoffield so |
|
| 6180 | - $objectoffield = $this; // we can use it inside computed formula |
|
| 6181 | - $this->array_options['options_' . $key] = dol_eval($extrafields->attributes[$this->table_element]['computed'][$key], 1, 0, '2'); |
|
| 6179 | + global $objectoffield; // We set a global variable to $objectoffield so |
|
| 6180 | + $objectoffield = $this; // we can use it inside computed formula |
|
| 6181 | + $this->array_options['options_'.$key] = dol_eval($extrafields->attributes[$this->table_element]['computed'][$key], 1, 0, '2'); |
|
| 6182 | 6182 | } |
| 6183 | 6183 | } |
| 6184 | 6184 | } |
@@ -6192,7 +6192,7 @@ discard block |
||
| 6192 | 6192 | return 0; |
| 6193 | 6193 | } |
| 6194 | 6194 | } else { |
| 6195 | - $this->errors[]=$this->db->lasterror; |
|
| 6195 | + $this->errors[] = $this->db->lasterror; |
|
| 6196 | 6196 | return -1; |
| 6197 | 6197 | } |
| 6198 | 6198 | } |
@@ -6359,7 +6359,7 @@ discard block |
||
| 6359 | 6359 | // If old value crypted in database is same than submited new value, it means we don't change it, so we don't update. |
| 6360 | 6360 | if ($algo == 'dolcrypt') { // dolibarr reversible encryption |
| 6361 | 6361 | if (!preg_match('/^dolcrypt:/', $this->array_options[$key])) { |
| 6362 | - $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6362 | + $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6363 | 6363 | } else { |
| 6364 | 6364 | $new_array_options[$key] = $this->array_options[$key]; // Value is kept |
| 6365 | 6365 | } |
@@ -6370,7 +6370,7 @@ discard block |
||
| 6370 | 6370 | // If value has changed |
| 6371 | 6371 | if ($algo == 'dolcrypt') { // dolibarr reversible encryption |
| 6372 | 6372 | if (!preg_match('/^dolcrypt:/', $this->array_options[$key])) { |
| 6373 | - $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6373 | + $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6374 | 6374 | } else { |
| 6375 | 6375 | $new_array_options[$key] = $this->array_options[$key]; // Value is kept |
| 6376 | 6376 | } |
@@ -6382,7 +6382,7 @@ discard block |
||
| 6382 | 6382 | //var_dump('jjj'.$algo.' '.$this->oldcopy->array_options[$key].' -> '.$this->array_options[$key]); |
| 6383 | 6383 | // If this->oldcopy is not defined, we can't know if we change attribute or not, so we must keep value |
| 6384 | 6384 | if ($algo == 'dolcrypt' && !preg_match('/^dolcrypt:/', $this->array_options[$key])) { // dolibarr reversible encryption |
| 6385 | - $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6385 | + $new_array_options[$key] = dolEncrypt($this->array_options[$key]); // warning, must be called when on the master |
|
| 6386 | 6386 | } else { |
| 6387 | 6387 | $new_array_options[$key] = $this->array_options[$key]; // Value is kept |
| 6388 | 6388 | } |
@@ -6768,7 +6768,7 @@ discard block |
||
| 6768 | 6768 | if (isset($this->oldcopy->array_options["options_".$key]) && $this->array_options["options_".$key] == $this->oldcopy->array_options["options_".$key]) { // If old value crypted in database is same than submited new value, it means we don't change it, so we don't update. |
| 6769 | 6769 | if ($algo == 'dolcrypt') { // dolibarr reversible encryption |
| 6770 | 6770 | if (!preg_match('/^dolcrypt:/', $this->array_options["options_".$key])) { |
| 6771 | - $new_array_options["options_".$key] = dolEncrypt($this->array_options["options_".$key]); // warning, must be called when on the master |
|
| 6771 | + $new_array_options["options_".$key] = dolEncrypt($this->array_options["options_".$key]); // warning, must be called when on the master |
|
| 6772 | 6772 | } else { |
| 6773 | 6773 | $new_array_options["options_".$key] = $this->array_options["options_".$key]; // Value is kept |
| 6774 | 6774 | } |
@@ -6788,7 +6788,7 @@ discard block |
||
| 6788 | 6788 | } |
| 6789 | 6789 | } else { |
| 6790 | 6790 | if ($algo == 'dolcrypt' && !preg_match('/^dolcrypt:/', $this->array_options["options_".$key])) { // dolibarr reversible encryption |
| 6791 | - $new_array_options["options_".$key] = dolEncrypt($this->array_options["options_".$key]); // warning, must be called when on the master |
|
| 6791 | + $new_array_options["options_".$key] = dolEncrypt($this->array_options["options_".$key]); // warning, must be called when on the master |
|
| 6792 | 6792 | } else { |
| 6793 | 6793 | $new_array_options["options_".$key] = $this->array_options["options_".$key]; // Value is kept |
| 6794 | 6794 | } |
@@ -7038,7 +7038,7 @@ discard block |
||
| 7038 | 7038 | // Special case that force options and type ($type can be integer, varchar, ...) |
| 7039 | 7039 | if (!empty($this->fields[$key]['arrayofkeyval']) && is_array($this->fields[$key]['arrayofkeyval'])) { |
| 7040 | 7040 | $param['options'] = $this->fields[$key]['arrayofkeyval']; |
| 7041 | - $type = (($this->fields[$key]['type']=='checkbox')?$this->fields[$key]['type']:'select'); |
|
| 7041 | + $type = (($this->fields[$key]['type'] == 'checkbox') ? $this->fields[$key]['type'] : 'select'); |
|
| 7042 | 7042 | } |
| 7043 | 7043 | |
| 7044 | 7044 | $label = $this->fields[$key]['label']; |
@@ -7090,7 +7090,7 @@ discard block |
||
| 7090 | 7090 | |
| 7091 | 7091 | // Add validation state class |
| 7092 | 7092 | if (!empty($validationClass)) { |
| 7093 | - $morecss.= $validationClass; |
|
| 7093 | + $morecss .= $validationClass; |
|
| 7094 | 7094 | } |
| 7095 | 7095 | |
| 7096 | 7096 | if (in_array($type, array('date'))) { |
@@ -7196,7 +7196,7 @@ discard block |
||
| 7196 | 7196 | if (is_array($param['options'])) { |
| 7197 | 7197 | $param_list = array_keys($param['options']); |
| 7198 | 7198 | $InfoFieldList = explode(":", $param_list[0], 5); |
| 7199 | - if (! empty($InfoFieldList[4])) { |
|
| 7199 | + if (!empty($InfoFieldList[4])) { |
|
| 7200 | 7200 | $pos = 0; $parenthesisopen = 0; |
| 7201 | 7201 | while (substr($InfoFieldList[4], $pos, 1) !== '' && ($parenthesisopen || $pos == 0 || substr($InfoFieldList[4], $pos, 1) != ':')) { |
| 7202 | 7202 | if (substr($InfoFieldList[4], $pos, 1) == '(') { |
@@ -7208,7 +7208,7 @@ discard block |
||
| 7208 | 7208 | $pos++; |
| 7209 | 7209 | } |
| 7210 | 7210 | $tmpbefore = substr($InfoFieldList[4], 0, $pos); |
| 7211 | - $tmpafter = substr($InfoFieldList[4], $pos+1); |
|
| 7211 | + $tmpafter = substr($InfoFieldList[4], $pos + 1); |
|
| 7212 | 7212 | //var_dump($InfoFieldList[4].' -> '.$pos); var_dump($tmpafter); |
| 7213 | 7213 | $InfoFieldList[4] = $tmpbefore; |
| 7214 | 7214 | if ($tmpafter !== '') { |
@@ -7256,8 +7256,8 @@ discard block |
||
| 7256 | 7256 | } |
| 7257 | 7257 | |
| 7258 | 7258 | $sqlwhere = ''; |
| 7259 | - $sql = "SELECT " . $keyList; |
|
| 7260 | - $sql .= " FROM " . $this->db->prefix() . $InfoFieldList[0]; |
|
| 7259 | + $sql = "SELECT ".$keyList; |
|
| 7260 | + $sql .= " FROM ".$this->db->prefix().$InfoFieldList[0]; |
|
| 7261 | 7261 | if (!empty($InfoFieldList[4])) { |
| 7262 | 7262 | // can use SELECT request |
| 7263 | 7263 | if (strpos($InfoFieldList[4], '$SEL$') !== false) { |
@@ -7274,18 +7274,18 @@ discard block |
||
| 7274 | 7274 | // We have to join on extrafield table |
| 7275 | 7275 | $errstr = ''; |
| 7276 | 7276 | if (strpos($InfoFieldList[4], 'extra') !== false) { |
| 7277 | - $sql .= " as main, " . $this->db->prefix() . $InfoFieldList[0] . "_extrafields as extra"; |
|
| 7278 | - $sqlwhere .= " WHERE extra.fk_object=main." . $InfoFieldList[2]; |
|
| 7279 | - $sqlwhere .= " AND " . forgeSQLFromUniversalSearchCriteria($InfoFieldList[4], $errstr, 1); |
|
| 7277 | + $sql .= " as main, ".$this->db->prefix().$InfoFieldList[0]."_extrafields as extra"; |
|
| 7278 | + $sqlwhere .= " WHERE extra.fk_object=main.".$InfoFieldList[2]; |
|
| 7279 | + $sqlwhere .= " AND ".forgeSQLFromUniversalSearchCriteria($InfoFieldList[4], $errstr, 1); |
|
| 7280 | 7280 | } else { |
| 7281 | - $sqlwhere .= " WHERE " . forgeSQLFromUniversalSearchCriteria($InfoFieldList[4], $errstr, 1); |
|
| 7281 | + $sqlwhere .= " WHERE ".forgeSQLFromUniversalSearchCriteria($InfoFieldList[4], $errstr, 1); |
|
| 7282 | 7282 | } |
| 7283 | 7283 | } else { |
| 7284 | 7284 | $sqlwhere .= ' WHERE 1=1'; |
| 7285 | 7285 | } |
| 7286 | 7286 | // Some tables may have field, some other not. For the moment we disable it. |
| 7287 | 7287 | if (in_array($InfoFieldList[0], array('tablewithentity'))) { |
| 7288 | - $sqlwhere .= " AND entity = " . ((int) $conf->entity); |
|
| 7288 | + $sqlwhere .= " AND entity = ".((int) $conf->entity); |
|
| 7289 | 7289 | } |
| 7290 | 7290 | $sql .= $sqlwhere; |
| 7291 | 7291 | //print $sql; |
@@ -7297,7 +7297,7 @@ discard block |
||
| 7297 | 7297 | $sql .= " ORDER BY ".$this->db->sanitize(implode(', ', $fields_label)); |
| 7298 | 7298 | } |
| 7299 | 7299 | |
| 7300 | - dol_syslog(get_class($this) . '::showInputField type=sellist', LOG_DEBUG); |
|
| 7300 | + dol_syslog(get_class($this).'::showInputField type=sellist', LOG_DEBUG); |
|
| 7301 | 7301 | $resql = $this->db->query($sql); |
| 7302 | 7302 | if ($resql) { |
| 7303 | 7303 | $out .= '<option value="0"> </option>'; |
@@ -7313,7 +7313,7 @@ discard block |
||
| 7313 | 7313 | if (count($fields_label) > 1) { |
| 7314 | 7314 | $notrans = true; |
| 7315 | 7315 | foreach ($fields_label as $field_toshow) { |
| 7316 | - $labeltoshow .= $obj->$field_toshow . ' '; |
|
| 7316 | + $labeltoshow .= $obj->$field_toshow.' '; |
|
| 7317 | 7317 | } |
| 7318 | 7318 | } else { |
| 7319 | 7319 | $labeltoshow = $obj->{$InfoFieldList[1]}; |
@@ -7324,12 +7324,12 @@ discard block |
||
| 7324 | 7324 | foreach ($fields_label as $field_toshow) { |
| 7325 | 7325 | $translabel = $langs->trans($obj->$field_toshow); |
| 7326 | 7326 | if ($translabel != $obj->$field_toshow) { |
| 7327 | - $labeltoshow = dol_trunc($translabel) . ' '; |
|
| 7327 | + $labeltoshow = dol_trunc($translabel).' '; |
|
| 7328 | 7328 | } else { |
| 7329 | - $labeltoshow = dol_trunc($obj->$field_toshow) . ' '; |
|
| 7329 | + $labeltoshow = dol_trunc($obj->$field_toshow).' '; |
|
| 7330 | 7330 | } |
| 7331 | 7331 | } |
| 7332 | - $out .= '<option value="' . $obj->rowid . '" selected>' . $labeltoshow . '</option>'; |
|
| 7332 | + $out .= '<option value="'.$obj->rowid.'" selected>'.$labeltoshow.'</option>'; |
|
| 7333 | 7333 | } else { |
| 7334 | 7334 | if (!$notrans) { |
| 7335 | 7335 | $translabel = $langs->trans($obj->{$InfoFieldList[1]}); |
@@ -7343,34 +7343,34 @@ discard block |
||
| 7343 | 7343 | $labeltoshow = '(not defined)'; |
| 7344 | 7344 | } |
| 7345 | 7345 | if ($value == $obj->rowid) { |
| 7346 | - $out .= '<option value="' . $obj->rowid . '" selected>' . $labeltoshow . '</option>'; |
|
| 7346 | + $out .= '<option value="'.$obj->rowid.'" selected>'.$labeltoshow.'</option>'; |
|
| 7347 | 7347 | } |
| 7348 | 7348 | |
| 7349 | 7349 | if (!empty($InfoFieldList[3]) && $parentField) { |
| 7350 | - $parent = $parentName . ':' . $obj->{$parentField}; |
|
| 7350 | + $parent = $parentName.':'.$obj->{$parentField}; |
|
| 7351 | 7351 | $isDependList = 1; |
| 7352 | 7352 | } |
| 7353 | 7353 | |
| 7354 | - $out .= '<option value="' . $obj->rowid . '"'; |
|
| 7354 | + $out .= '<option value="'.$obj->rowid.'"'; |
|
| 7355 | 7355 | $out .= ($value == $obj->rowid ? ' selected' : ''); |
| 7356 | - $out .= (!empty($parent) ? ' parent="' . $parent . '"' : ''); |
|
| 7357 | - $out .= '>' . $labeltoshow . '</option>'; |
|
| 7356 | + $out .= (!empty($parent) ? ' parent="'.$parent.'"' : ''); |
|
| 7357 | + $out .= '>'.$labeltoshow.'</option>'; |
|
| 7358 | 7358 | } |
| 7359 | 7359 | |
| 7360 | 7360 | $i++; |
| 7361 | 7361 | } |
| 7362 | 7362 | $this->db->free($resql); |
| 7363 | 7363 | } else { |
| 7364 | - print 'Error in request ' . $sql . ' ' . $this->db->lasterror() . '. Check setup of extra parameters.<br>'; |
|
| 7364 | + print 'Error in request '.$sql.' '.$this->db->lasterror().'. Check setup of extra parameters.<br>'; |
|
| 7365 | 7365 | } |
| 7366 | 7366 | } else { |
| 7367 | 7367 | require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; |
| 7368 | 7368 | $data = $form->select_all_categories(Categorie::$MAP_ID_TO_CODE[$InfoFieldList[5]], '', 'parent', 64, $InfoFieldList[6], 1, 1); |
| 7369 | 7369 | $out .= '<option value="0"> </option>'; |
| 7370 | 7370 | foreach ($data as $data_key => $data_value) { |
| 7371 | - $out .= '<option value="' . $data_key . '"'; |
|
| 7371 | + $out .= '<option value="'.$data_key.'"'; |
|
| 7372 | 7372 | $out .= ($value == $data_key ? ' selected' : ''); |
| 7373 | - $out .= '>' . $data_value . '</option>'; |
|
| 7373 | + $out .= '>'.$data_value.'</option>'; |
|
| 7374 | 7374 | } |
| 7375 | 7375 | } |
| 7376 | 7376 | } |
@@ -7435,8 +7435,8 @@ discard block |
||
| 7435 | 7435 | } |
| 7436 | 7436 | |
| 7437 | 7437 | $sqlwhere = ''; |
| 7438 | - $sql = "SELECT " . $keyList; |
|
| 7439 | - $sql .= ' FROM ' . $this->db->prefix() . $InfoFieldList[0]; |
|
| 7438 | + $sql = "SELECT ".$keyList; |
|
| 7439 | + $sql .= ' FROM '.$this->db->prefix().$InfoFieldList[0]; |
|
| 7440 | 7440 | if (!empty($InfoFieldList[4])) { |
| 7441 | 7441 | // can use SELECT request |
| 7442 | 7442 | if (strpos($InfoFieldList[4], '$SEL$') !== false) { |
@@ -7452,23 +7452,23 @@ discard block |
||
| 7452 | 7452 | |
| 7453 | 7453 | // We have to join on extrafield table |
| 7454 | 7454 | if (strpos($InfoFieldList[4], 'extra') !== false) { |
| 7455 | - $sql .= ' as main, ' . $this->db->prefix() . $InfoFieldList[0] . '_extrafields as extra'; |
|
| 7456 | - $sqlwhere .= " WHERE extra.fk_object=main." . $InfoFieldList[2] . " AND " . $InfoFieldList[4]; |
|
| 7455 | + $sql .= ' as main, '.$this->db->prefix().$InfoFieldList[0].'_extrafields as extra'; |
|
| 7456 | + $sqlwhere .= " WHERE extra.fk_object=main.".$InfoFieldList[2]." AND ".$InfoFieldList[4]; |
|
| 7457 | 7457 | } else { |
| 7458 | - $sqlwhere .= " WHERE " . $InfoFieldList[4]; |
|
| 7458 | + $sqlwhere .= " WHERE ".$InfoFieldList[4]; |
|
| 7459 | 7459 | } |
| 7460 | 7460 | } else { |
| 7461 | 7461 | $sqlwhere .= ' WHERE 1=1'; |
| 7462 | 7462 | } |
| 7463 | 7463 | // Some tables may have field, some other not. For the moment we disable it. |
| 7464 | 7464 | if (in_array($InfoFieldList[0], array('tablewithentity'))) { |
| 7465 | - $sqlwhere .= " AND entity = " . ((int) $conf->entity); |
|
| 7465 | + $sqlwhere .= " AND entity = ".((int) $conf->entity); |
|
| 7466 | 7466 | } |
| 7467 | 7467 | // $sql.=preg_replace('/^ AND /','',$sqlwhere); |
| 7468 | 7468 | // print $sql; |
| 7469 | 7469 | |
| 7470 | 7470 | $sql .= $sqlwhere; |
| 7471 | - dol_syslog(get_class($this) . '::showInputField type=chkbxlst', LOG_DEBUG); |
|
| 7471 | + dol_syslog(get_class($this).'::showInputField type=chkbxlst', LOG_DEBUG); |
|
| 7472 | 7472 | $resql = $this->db->query($sql); |
| 7473 | 7473 | if ($resql) { |
| 7474 | 7474 | $num = $this->db->num_rows($resql); |
@@ -7486,7 +7486,7 @@ discard block |
||
| 7486 | 7486 | if (count($fields_label) > 1) { |
| 7487 | 7487 | $notrans = true; |
| 7488 | 7488 | foreach ($fields_label as $field_toshow) { |
| 7489 | - $labeltoshow .= $obj->$field_toshow . ' '; |
|
| 7489 | + $labeltoshow .= $obj->$field_toshow.' '; |
|
| 7490 | 7490 | } |
| 7491 | 7491 | } else { |
| 7492 | 7492 | $labeltoshow = $obj->{$InfoFieldList[1]}; |
@@ -7497,9 +7497,9 @@ discard block |
||
| 7497 | 7497 | foreach ($fields_label as $field_toshow) { |
| 7498 | 7498 | $translabel = $langs->trans($obj->$field_toshow); |
| 7499 | 7499 | if ($translabel != $obj->$field_toshow) { |
| 7500 | - $labeltoshow = dol_trunc($translabel, 18) . ' '; |
|
| 7500 | + $labeltoshow = dol_trunc($translabel, 18).' '; |
|
| 7501 | 7501 | } else { |
| 7502 | - $labeltoshow = dol_trunc($obj->$field_toshow, 18) . ' '; |
|
| 7502 | + $labeltoshow = dol_trunc($obj->$field_toshow, 18).' '; |
|
| 7503 | 7503 | } |
| 7504 | 7504 | } |
| 7505 | 7505 | |
@@ -7522,7 +7522,7 @@ discard block |
||
| 7522 | 7522 | } |
| 7523 | 7523 | |
| 7524 | 7524 | if (!empty($InfoFieldList[3]) && $parentField) { |
| 7525 | - $parent = $parentName . ':' . $obj->{$parentField}; |
|
| 7525 | + $parent = $parentName.':'.$obj->{$parentField}; |
|
| 7526 | 7526 | $isDependList = 1; |
| 7527 | 7527 | } |
| 7528 | 7528 | |
@@ -7533,14 +7533,14 @@ discard block |
||
| 7533 | 7533 | } |
| 7534 | 7534 | $this->db->free($resql); |
| 7535 | 7535 | |
| 7536 | - $out = $form->multiselectarray($keyprefix . $key . $keysuffix, $data, $value_arr, '', 0, $morecss, 0, '100%'); |
|
| 7536 | + $out = $form->multiselectarray($keyprefix.$key.$keysuffix, $data, $value_arr, '', 0, $morecss, 0, '100%'); |
|
| 7537 | 7537 | } else { |
| 7538 | - print 'Error in request ' . $sql . ' ' . $this->db->lasterror() . '. Check setup of extra parameters.<br>'; |
|
| 7538 | + print 'Error in request '.$sql.' '.$this->db->lasterror().'. Check setup of extra parameters.<br>'; |
|
| 7539 | 7539 | } |
| 7540 | 7540 | } else { |
| 7541 | 7541 | require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; |
| 7542 | 7542 | $data = $form->select_all_categories(Categorie::$MAP_ID_TO_CODE[$InfoFieldList[5]], '', 'parent', 64, $InfoFieldList[6], 1, 1); |
| 7543 | - $out = $form->multiselectarray($keyprefix . $key . $keysuffix, $data, $value_arr, '', 0, $morecss, 0, '100%'); |
|
| 7543 | + $out = $form->multiselectarray($keyprefix.$key.$keysuffix, $data, $value_arr, '', 0, $morecss, 0, '100%'); |
|
| 7544 | 7544 | } |
| 7545 | 7545 | } |
| 7546 | 7546 | } elseif ($type == 'link') { |
@@ -7621,7 +7621,7 @@ discard block |
||
| 7621 | 7621 | $out = '<input type="hidden" value="'.$value.'" name="'.$keyprefix.$key.$keysuffix.'" id="'.$keyprefix.$key.$keysuffix.'"/>'; |
| 7622 | 7622 | } |
| 7623 | 7623 | |
| 7624 | - if ($isDependList==1) { |
|
| 7624 | + if ($isDependList == 1) { |
|
| 7625 | 7625 | $out .= $this->getJSListDependancies('_common'); |
| 7626 | 7626 | } |
| 7627 | 7627 | /* Add comments |
@@ -7672,7 +7672,7 @@ discard block |
||
| 7672 | 7672 | $type = 'varchar'; // convert varchar(xx) int varchar |
| 7673 | 7673 | } |
| 7674 | 7674 | if (!empty($val['arrayofkeyval']) && is_array($val['arrayofkeyval'])) { |
| 7675 | - $type = (($this->fields[$key]['type']=='checkbox')?$this->fields[$key]['type']:'select'); |
|
| 7675 | + $type = (($this->fields[$key]['type'] == 'checkbox') ? $this->fields[$key]['type'] : 'select'); |
|
| 7676 | 7676 | } |
| 7677 | 7677 | if (preg_match('/^integer:(.*):(.*)/i', $val['type'], $reg)) { |
| 7678 | 7678 | $type = 'link'; |
@@ -7757,7 +7757,7 @@ discard block |
||
| 7757 | 7757 | $value = $this->getLibStatut(3); |
| 7758 | 7758 | } elseif ($type == 'date') { |
| 7759 | 7759 | if (!empty($value)) { |
| 7760 | - $value = dol_print_date($value, 'day'); // We suppose dates without time are always gmt (storage of course + output) |
|
| 7760 | + $value = dol_print_date($value, 'day'); // We suppose dates without time are always gmt (storage of course + output) |
|
| 7761 | 7761 | } else { |
| 7762 | 7762 | $value = ''; |
| 7763 | 7763 | } |
@@ -7795,7 +7795,7 @@ discard block |
||
| 7795 | 7795 | $value = price($value, 0, $langs, 0, 0, -1, $conf->currency); |
| 7796 | 7796 | } |
| 7797 | 7797 | } elseif ($type == 'select') { |
| 7798 | - $value = isset($param['options'][$value])?$param['options'][$value]:''; |
|
| 7798 | + $value = isset($param['options'][$value]) ? $param['options'][$value] : ''; |
|
| 7799 | 7799 | } elseif ($type == 'sellist') { |
| 7800 | 7800 | $param_list = array_keys($param['options']); |
| 7801 | 7801 | $InfoFieldList = explode(":", $param_list[0]); |
@@ -7855,9 +7855,9 @@ discard block |
||
| 7855 | 7855 | $translabel = $langs->trans($obj->$field_toshow); |
| 7856 | 7856 | } |
| 7857 | 7857 | if ($translabel != $field_toshow) { |
| 7858 | - $value .= dol_trunc($translabel, 18) . ' '; |
|
| 7858 | + $value .= dol_trunc($translabel, 18).' '; |
|
| 7859 | 7859 | } else { |
| 7860 | - $value .= $obj->$field_toshow . ' '; |
|
| 7860 | + $value .= $obj->$field_toshow.' '; |
|
| 7861 | 7861 | } |
| 7862 | 7862 | } |
| 7863 | 7863 | } else { |
@@ -7873,7 +7873,7 @@ discard block |
||
| 7873 | 7873 | } |
| 7874 | 7874 | } |
| 7875 | 7875 | } else { |
| 7876 | - require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php'; |
|
| 7876 | + require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; |
|
| 7877 | 7877 | |
| 7878 | 7878 | $toprint = array(); |
| 7879 | 7879 | $obj = $this->db->fetch_object($resql); |
@@ -7881,7 +7881,7 @@ discard block |
||
| 7881 | 7881 | $c->fetch($obj->rowid); |
| 7882 | 7882 | $ways = $c->print_all_ways(); // $ways[0] = "ccc2 >> ccc2a >> ccc2a1" with html formatted text |
| 7883 | 7883 | foreach ($ways as $way) { |
| 7884 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories"' . ($c->color ? ' style="background: #' . $c->color . ';"' : ' style="background: #aaa"') . '>' . img_object('', 'category') . ' ' . $way . '</li>'; |
|
| 7884 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories"'.($c->color ? ' style="background: #'.$c->color.';"' : ' style="background: #aaa"').'>'.img_object('', 'category').' '.$way.'</li>'; |
|
| 7885 | 7885 | } |
| 7886 | 7886 | $value = '<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">'.implode(' ', $toprint).'</ul></div>'; |
| 7887 | 7887 | } |
@@ -7897,11 +7897,11 @@ discard block |
||
| 7897 | 7897 | $toprint = array(); |
| 7898 | 7898 | foreach ($value_arr as $keyval => $valueval) { |
| 7899 | 7899 | if (!empty($valueval)) { |
| 7900 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">' . $param['options'][$valueval] . '</li>'; |
|
| 7900 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">'.$param['options'][$valueval].'</li>'; |
|
| 7901 | 7901 | } |
| 7902 | 7902 | } |
| 7903 | 7903 | if (!empty($toprint)) { |
| 7904 | - $value = '<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">' . implode(' ', $toprint) . '</ul></div>'; |
|
| 7904 | + $value = '<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">'.implode(' ', $toprint).'</ul></div>'; |
|
| 7905 | 7905 | } |
| 7906 | 7906 | } |
| 7907 | 7907 | } elseif ($type == 'chkbxlst') { |
@@ -7956,9 +7956,9 @@ discard block |
||
| 7956 | 7956 | $translabel = $langs->trans($obj->$field_toshow); |
| 7957 | 7957 | } |
| 7958 | 7958 | if ($translabel != $field_toshow) { |
| 7959 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">' . dol_trunc($translabel, 18) . '</li>'; |
|
| 7959 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">'.dol_trunc($translabel, 18).'</li>'; |
|
| 7960 | 7960 | } else { |
| 7961 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">' . $obj->$field_toshow . '</li>'; |
|
| 7961 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">'.$obj->$field_toshow.'</li>'; |
|
| 7962 | 7962 | } |
| 7963 | 7963 | } |
| 7964 | 7964 | } else { |
@@ -7967,15 +7967,15 @@ discard block |
||
| 7967 | 7967 | $translabel = $langs->trans($obj->{$InfoFieldList[1]}); |
| 7968 | 7968 | } |
| 7969 | 7969 | if ($translabel != $obj->{$InfoFieldList[1]}) { |
| 7970 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">' . dol_trunc($translabel, 18) . '</li>'; |
|
| 7970 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">'.dol_trunc($translabel, 18).'</li>'; |
|
| 7971 | 7971 | } else { |
| 7972 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">' . $obj->{$InfoFieldList[1]} . '</li>'; |
|
| 7972 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #bbb">'.$obj->{$InfoFieldList[1]}.'</li>'; |
|
| 7973 | 7973 | } |
| 7974 | 7974 | } |
| 7975 | 7975 | } |
| 7976 | 7976 | } |
| 7977 | 7977 | } else { |
| 7978 | - require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php'; |
|
| 7978 | + require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php'; |
|
| 7979 | 7979 | |
| 7980 | 7980 | $toprint = array(); |
| 7981 | 7981 | while ($obj = $this->db->fetch_object($resql)) { |
@@ -7984,7 +7984,7 @@ discard block |
||
| 7984 | 7984 | $c->fetch($obj->rowid); |
| 7985 | 7985 | $ways = $c->print_all_ways(); // $ways[0] = "ccc2 >> ccc2a >> ccc2a1" with html formatted text |
| 7986 | 7986 | foreach ($ways as $way) { |
| 7987 | - $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories"' . ($c->color ? ' style="background: #' . $c->color . ';"' : ' style="background: #aaa"') . '>' . img_object('', 'category') . ' ' . $way . '</li>'; |
|
| 7987 | + $toprint[] = '<li class="select2-search-choice-dolibarr noborderoncategories"'.($c->color ? ' style="background: #'.$c->color.';"' : ' style="background: #aaa"').'>'.img_object('', 'category').' '.$way.'</li>'; |
|
| 7988 | 7988 | } |
| 7989 | 7989 | } |
| 7990 | 7990 | } |
@@ -8131,7 +8131,7 @@ discard block |
||
| 8131 | 8131 | global $langs; |
| 8132 | 8132 | |
| 8133 | 8133 | if (!class_exists('Validate')) { |
| 8134 | - require_once DOL_DOCUMENT_ROOT . '/core/class/validate.class.php'; |
|
| 8134 | + require_once DOL_DOCUMENT_ROOT.'/core/class/validate.class.php'; |
|
| 8135 | 8135 | } |
| 8136 | 8136 | |
| 8137 | 8137 | $this->clearFieldError($fieldKey); |
@@ -8345,7 +8345,7 @@ discard block |
||
| 8345 | 8345 | $out .= "\n"; |
| 8346 | 8346 | |
| 8347 | 8347 | $nbofextrafieldsshown = 0; |
| 8348 | - $e = 0; // var to manage the modulo (odd/even) |
|
| 8348 | + $e = 0; // var to manage the modulo (odd/even) |
|
| 8349 | 8349 | |
| 8350 | 8350 | $lastseparatorkeyfound = ''; |
| 8351 | 8351 | $extrafields_collapse_num = ''; |
@@ -8396,7 +8396,7 @@ discard block |
||
| 8396 | 8396 | } |
| 8397 | 8397 | |
| 8398 | 8398 | $colspan = 0; |
| 8399 | - if (is_array($params) && count($params) > 0 && $display_type=='card') { |
|
| 8399 | + if (is_array($params) && count($params) > 0 && $display_type == 'card') { |
|
| 8400 | 8400 | if (array_key_exists('cols', $params)) { |
| 8401 | 8401 | $colspan = $params['cols']; |
| 8402 | 8402 | } elseif (array_key_exists('colspan', $params)) { // For backward compatibility. Use cols instead now. |
@@ -8483,7 +8483,7 @@ discard block |
||
| 8483 | 8483 | $domData .= ' data-targetid="'.$this->id.'"'; |
| 8484 | 8484 | |
| 8485 | 8485 | $html_id = (empty($this->id) ? '' : 'extrarow-'.$this->element.'_'.$key.'_'.$this->id); |
| 8486 | - if ($display_type=='card') { |
|
| 8486 | + if ($display_type == 'card') { |
|
| 8487 | 8487 | if (!empty($conf->global->MAIN_EXTRAFIELDS_USE_TWO_COLUMS) && ($e % 2) == 0) { |
| 8488 | 8488 | $colspan = 0; |
| 8489 | 8489 | } |
@@ -8594,12 +8594,12 @@ discard block |
||
| 8594 | 8594 | break; |
| 8595 | 8595 | } |
| 8596 | 8596 | |
| 8597 | - $out .= ($display_type=='card' ? '</td>' : '</div>'); |
|
| 8597 | + $out .= ($display_type == 'card' ? '</td>' : '</div>'); |
|
| 8598 | 8598 | |
| 8599 | 8599 | if (!empty($conf->global->MAIN_EXTRAFIELDS_USE_TWO_COLUMS) && (($e % 2) == 1)) { |
| 8600 | - $out .= ($display_type=='card' ? '</tr>' : '</div>'); |
|
| 8600 | + $out .= ($display_type == 'card' ? '</tr>' : '</div>'); |
|
| 8601 | 8601 | } else { |
| 8602 | - $out .= ($display_type=='card' ? '</tr>' : '</div>'); |
|
| 8602 | + $out .= ($display_type == 'card' ? '</tr>' : '</div>'); |
|
| 8603 | 8603 | } |
| 8604 | 8604 | |
| 8605 | 8605 | $e++; |
@@ -8982,7 +8982,7 @@ discard block |
||
| 8982 | 8982 | if ($val['share']) { |
| 8983 | 8983 | if (empty($maxHeight) || ($photo_vignette && $imgarray['height'] > $maxHeight)) { |
| 8984 | 8984 | $return .= '<!-- Show original file (thumb not yet available with shared links) -->'; |
| 8985 | - $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').'"'.($maxHeight ?' height="'.$maxHeight.'"': '').' src="'.DOL_URL_ROOT.'/viewimage.php?hashp='.urlencode($val['share']).($cache ? '&cache='.urlencode($cache) : '').'" title="'.dol_escape_htmltag($alt).'">'; |
|
| 8985 | + $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').'"'.($maxHeight ? ' height="'.$maxHeight.'"' : '').' src="'.DOL_URL_ROOT.'/viewimage.php?hashp='.urlencode($val['share']).($cache ? '&cache='.urlencode($cache) : '').'" title="'.dol_escape_htmltag($alt).'">'; |
|
| 8986 | 8986 | } else { |
| 8987 | 8987 | $return .= '<!-- Show original file -->'; |
| 8988 | 8988 | $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').'" height="'.$maxHeight.'" src="'.DOL_URL_ROOT.'/viewimage.php?hashp='.urlencode($val['share']).($cache ? '&cache='.urlencode($cache) : '').'" title="'.dol_escape_htmltag($alt).'">'; |
@@ -8994,7 +8994,7 @@ discard block |
||
| 8994 | 8994 | } else { |
| 8995 | 8995 | if (empty($maxHeight) || ($photo_vignette && $imgarray['height'] > $maxHeight)) { |
| 8996 | 8996 | $return .= '<!-- Show thumb -->'; |
| 8997 | - $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').' maxwidth150onsmartphone maxwidth200"'.($maxHeight ?' height="'.$maxHeight.'"': '').' src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$this->entity.($cache ? '&cache='.urlencode($cache) : '').'&file='.urlencode($pdirthumb.$photo_vignette).'" title="'.dol_escape_htmltag($alt).'">'; |
|
| 8997 | + $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').' maxwidth150onsmartphone maxwidth200"'.($maxHeight ? ' height="'.$maxHeight.'"' : '').' src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$this->entity.($cache ? '&cache='.urlencode($cache) : '').'&file='.urlencode($pdirthumb.$photo_vignette).'" title="'.dol_escape_htmltag($alt).'">'; |
|
| 8998 | 8998 | } else { |
| 8999 | 8999 | $return .= '<!-- Show original file -->'; |
| 9000 | 9000 | $return .= '<img class="photo photowithmargin'.($addphotorefcss ? ' '.$addphotorefcss : '').'" height="'.$maxHeight.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart='.$modulepart.'&entity='.$this->entity.($cache ? '&cache='.urlencode($cache) : '').'&file='.urlencode($pdir.$photo).'" title="'.dol_escape_htmltag($alt).'">'; |
@@ -9403,7 +9403,7 @@ discard block |
||
| 9403 | 9403 | continue; |
| 9404 | 9404 | } |
| 9405 | 9405 | } |
| 9406 | - $keys_with_alias[] = $alias . '.' . $fieldname; |
|
| 9406 | + $keys_with_alias[] = $alias.'.'.$fieldname; |
|
| 9407 | 9407 | } |
| 9408 | 9408 | return implode(',', $keys_with_alias); |
| 9409 | 9409 | } else { |
@@ -9519,7 +9519,7 @@ discard block |
||
| 9519 | 9519 | if (!$error) { |
| 9520 | 9520 | $sql = "INSERT INTO ".$this->db->prefix().$this->table_element; |
| 9521 | 9521 | $sql .= " (".implode(", ", $keys).')'; |
| 9522 | - $sql .= " VALUES (".implode(", ", $values).")"; // $values can contains 'abc' or 123 |
|
| 9522 | + $sql .= " VALUES (".implode(", ", $values).")"; // $values can contains 'abc' or 123 |
|
| 9523 | 9523 | |
| 9524 | 9524 | $res = $this->db->query($sql); |
| 9525 | 9525 | if (!$res) { |
@@ -9804,7 +9804,7 @@ discard block |
||
| 9804 | 9804 | |
| 9805 | 9805 | // Update extrafield |
| 9806 | 9806 | if (!$error) { |
| 9807 | - $result = $this->insertExtraFields(); // This delete and reinsert extrafields |
|
| 9807 | + $result = $this->insertExtraFields(); // This delete and reinsert extrafields |
|
| 9808 | 9808 | if ($result < 0) { |
| 9809 | 9809 | $error++; |
| 9810 | 9810 | } |
@@ -10331,7 +10331,7 @@ discard block |
||
| 10331 | 10331 | // Process |
| 10332 | 10332 | foreach ($to_del as $del) { |
| 10333 | 10333 | if ($c->fetch($del) > 0) { |
| 10334 | - $result=$c->del_type($this, $type_categ); |
|
| 10334 | + $result = $c->del_type($this, $type_categ); |
|
| 10335 | 10335 | if ($result < 0) { |
| 10336 | 10336 | $error++; |
| 10337 | 10337 | $this->error = $c->error; |
@@ -91,8 +91,8 @@ |
||
| 91 | 91 | $label_default = getDolGlobalString('TAKEPOS_PRINT_WITHOUT_DETAILS_LABEL_DEFAULT'); |
| 92 | 92 | $qty_default = 1; |
| 93 | 93 | |
| 94 | - print '<input type="text" id="label" name="label" class="takepospay" value="' . $label_default . '" style="width:40%;" placeholder="' . $langs->trans('Label') . '">'; |
|
| 95 | - print '<input type="text" id="qty" name="qty" class="takepospay" value="' . $qty_default . '" style="width:10%;" placeholder="' . $langs->trans('Qty') . '">'; |
|
| 94 | + print '<input type="text" id="label" name="label" class="takepospay" value="'.$label_default.'" style="width:40%;" placeholder="'.$langs->trans('Label').'">'; |
|
| 95 | + print '<input type="text" id="qty" name="qty" class="takepospay" value="'.$qty_default.'" style="width:10%;" placeholder="'.$langs->trans('Qty').'">'; |
|
| 96 | 96 | } |
| 97 | 97 | ?> |
| 98 | 98 | <input type="button" class="button takepospay clearboth" value="OK" onclick="Save();"> |
@@ -273,7 +273,7 @@ |
||
| 273 | 273 | print '<tr class="oddeven"><td>'; |
| 274 | 274 | print $langs->trans('PrintWithoutDetailsLabelDefault'); |
| 275 | 275 | print '<td colspan="2">'; |
| 276 | - print '<input type="text" name="TAKEPOS_PRINT_WITHOUT_DETAILS_LABEL_DEFAULT" value="' . getDolGlobalString('TAKEPOS_PRINT_WITHOUT_DETAILS_LABEL_DEFAULT') . '" />'; |
|
| 276 | + print '<input type="text" name="TAKEPOS_PRINT_WITHOUT_DETAILS_LABEL_DEFAULT" value="'.getDolGlobalString('TAKEPOS_PRINT_WITHOUT_DETAILS_LABEL_DEFAULT').'" />'; |
|
| 277 | 277 | print "</td></tr>\n"; |
| 278 | 278 | } |
| 279 | 279 | |
@@ -136,8 +136,12 @@ |
||
| 136 | 136 | //if ($user->socid > 0) $socid = $user->socid; |
| 137 | 137 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 138 | 138 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 139 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 140 | -if (!$permissiontoread) accessforbidden(); |
|
| 139 | +if (empty($conf->hrm->enabled)) { |
|
| 140 | + accessforbidden(); |
|
| 141 | +} |
|
| 142 | +if (!$permissiontoread) { |
|
| 143 | + accessforbidden(); |
|
| 144 | +} |
|
| 141 | 145 | |
| 142 | 146 | |
| 143 | 147 | /* |
@@ -29,11 +29,11 @@ discard block |
||
| 29 | 29 | // Load Dolibarr environment |
| 30 | 30 | require '../main.inc.php'; |
| 31 | 31 | |
| 32 | -require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php'; |
|
| 33 | -require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php'; |
|
| 34 | -require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php'; |
|
| 35 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/skill.class.php'; |
|
| 36 | -require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_skill.lib.php'; |
|
| 32 | +require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; |
|
| 33 | +require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; |
|
| 34 | +require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
| 35 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/skill.class.php'; |
|
| 36 | +require_once DOL_DOCUMENT_ROOT.'/hrm/lib/hrm_skill.lib.php'; |
|
| 37 | 37 | |
| 38 | 38 | |
| 39 | 39 | // Load translation files required by the page |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | $linkback = '<a href="'.DOL_URL_ROOT.'/hrm/skill_list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>'; |
| 153 | 153 | |
| 154 | 154 | $morehtmlref = '<div class="refid">'; |
| 155 | - $morehtmlref.= $object->label; |
|
| 155 | + $morehtmlref .= $object->label; |
|
| 156 | 156 | $morehtmlref .= '</div>'; |
| 157 | 157 | |
| 158 | 158 | |
@@ -136,8 +136,12 @@ |
||
| 136 | 136 | //if ($user->socid > 0) $socid = $user->socid; |
| 137 | 137 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 138 | 138 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 139 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 140 | -if (!$permissiontoread) accessforbidden(); |
|
| 139 | +if (empty($conf->hrm->enabled)) { |
|
| 140 | + accessforbidden(); |
|
| 141 | +} |
|
| 142 | +if (!$permissiontoread) { |
|
| 143 | + accessforbidden(); |
|
| 144 | +} |
|
| 141 | 145 | |
| 142 | 146 | |
| 143 | 147 | /* |
@@ -136,8 +136,12 @@ |
||
| 136 | 136 | //if ($user->socid > 0) $socid = $user->socid; |
| 137 | 137 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 138 | 138 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 139 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 140 | -if (!$permissiontoread) accessforbidden(); |
|
| 139 | +if (empty($conf->hrm->enabled)) { |
|
| 140 | + accessforbidden(); |
|
| 141 | +} |
|
| 142 | +if (!$permissiontoread) { |
|
| 143 | + accessforbidden(); |
|
| 144 | +} |
|
| 141 | 145 | |
| 142 | 146 | |
| 143 | 147 | /* |
@@ -33,8 +33,8 @@ discard block |
||
| 33 | 33 | require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; |
| 34 | 34 | require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php'; |
| 35 | 35 | require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; |
| 36 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/skill.class.php'; |
|
| 37 | -require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_skill.lib.php'; |
|
| 36 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/skill.class.php'; |
|
| 37 | +require_once DOL_DOCUMENT_ROOT.'/hrm/lib/hrm_skill.lib.php'; |
|
| 38 | 38 | |
| 39 | 39 | // Load translation files required by the page |
| 40 | 40 | $langs->loadLangs(array('hrm', 'companies', 'other', 'mails')); |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | $linkback = '<a href="'.DOL_URL_ROOT.'/hrm/skill_list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>'; |
| 132 | 132 | |
| 133 | 133 | $morehtmlref = '<div class="refid">'; |
| 134 | - $morehtmlref.= $object->label; |
|
| 134 | + $morehtmlref .= $object->label; |
|
| 135 | 135 | $morehtmlref .= '</div>'; |
| 136 | 136 | |
| 137 | 137 | dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'rowid', $morehtmlref); |
@@ -136,8 +136,12 @@ |
||
| 136 | 136 | //if ($user->socid > 0) $socid = $user->socid; |
| 137 | 137 | //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0); |
| 138 | 138 | //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft); |
| 139 | -if (empty($conf->hrm->enabled)) accessforbidden(); |
|
| 140 | -if (!$permissiontoread) accessforbidden(); |
|
| 139 | +if (empty($conf->hrm->enabled)) { |
|
| 140 | + accessforbidden(); |
|
| 141 | +} |
|
| 142 | +if (!$permissiontoread) { |
|
| 143 | + accessforbidden(); |
|
| 144 | +} |
|
| 141 | 145 | |
| 142 | 146 | |
| 143 | 147 | /* |
@@ -29,11 +29,11 @@ discard block |
||
| 29 | 29 | // Load Dolibarr environment |
| 30 | 30 | require '../main.inc.php'; |
| 31 | 31 | |
| 32 | -require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php'; |
|
| 33 | -require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php'; |
|
| 34 | -require_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php'; |
|
| 35 | -require_once DOL_DOCUMENT_ROOT . '/hrm/class/job.class.php'; |
|
| 36 | -require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_job.lib.php'; |
|
| 32 | +require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; |
|
| 33 | +require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php'; |
|
| 34 | +require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php'; |
|
| 35 | +require_once DOL_DOCUMENT_ROOT.'/hrm/class/job.class.php'; |
|
| 36 | +require_once DOL_DOCUMENT_ROOT.'/hrm/lib/hrm_job.lib.php'; |
|
| 37 | 37 | |
| 38 | 38 | // Load translation files required by the page |
| 39 | 39 | $langs->loadLangs(array('hrm', 'other')); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | $linkback = '<a href="'.dol_buildpath('/hrm/job_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>'; |
| 152 | 152 | |
| 153 | 153 | $morehtmlref = '<div class="refid">'; |
| 154 | - $morehtmlref.= $object->label; |
|
| 154 | + $morehtmlref .= $object->label; |
|
| 155 | 155 | $morehtmlref .= '</div>'; |
| 156 | 156 | |
| 157 | 157 | |