29require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
41 public $module =
'hrm';
46 public $element =
'job';
51 public $table_element =
'hrm_job';
57 public $ismultientitymanaged = 0;
62 public $isextrafieldmanaged = 1;
67 public $picto =
'technic';
70 const STATUS_DRAFT = 0;
71 const STATUS_VALIDATED = 1;
72 const STATUS_CANCELED = 9;
105 public $fields=array(
106 'rowid' => array(
'type'=>
'integer',
'label'=>
'TechnicalID',
'enabled'=>
'1',
'position'=>1,
'notnull'=>1,
'visible'=>0,
'noteditable'=>
'1',
'index'=>1,
'css'=>
'left',
'comment'=>
"Id"),
107 'label' => array(
'type'=>
'varchar(128)',
'label'=>
'Label',
'enabled'=>
'1',
'position'=>20,
'notnull'=>1,
'visible'=>1,
'index'=>1,
'searchall'=>1,
'showoncombobox'=>
'1',
'comment'=>
"Label of object"),
108 'description' => array(
'type'=>
'text',
'label'=>
'Description',
'enabled'=>
'1',
'position'=>21,
'notnull'=>0,
'visible'=>1,),
109 'date_creation' => array(
'type'=>
'datetime',
'label'=>
'DateCreation',
'enabled'=>
'1',
'position'=>500,
'notnull'=>1,
'visible'=>2,),
110 'tms' => array(
'type'=>
'timestamp',
'label'=>
'DateModification',
'enabled'=>
'1',
'position'=>501,
'notnull'=>0,
'visible'=>2,),
111 'deplacement' => array(
'type'=>
'select',
'required'=> 1,
'label'=>
'NeedBusinessTravels',
'enabled'=> 1,
'position'=> 90,
'notnull'=> 1,
'visible'=> 1,
'arrayofkeyval'=> array(0 =>
"No", 1=>
"Yes"),
'default'=>0),
112 'note_public' => array(
'type'=>
'html',
'label'=>
'NotePublic',
'enabled'=>
'1',
'position'=>70,
'notnull'=>0,
'visible'=>0,),
113 'note_private' => array(
'type'=>
'html',
'label'=>
'NotePrivate',
'enabled'=>
'1',
'position'=>71,
'notnull'=>0,
'visible'=>0,),
114 'fk_user_creat' => array(
'type'=>
'integer:User:user/class/user.class.php',
'label'=>
'UserAuthor',
'enabled'=>
'1',
'position'=>510,
'notnull'=>1,
'visible'=>-2,
'foreignkey'=>
'user.rowid',),
115 'fk_user_modif' => array(
'type'=>
'integer:User:user/class/user.class.php',
'label'=>
'UserModif',
'enabled'=>
'1',
'position'=>511,
'notnull'=>-1,
'visible'=>-2,),
121 public $date_creation;
125 public $note_private;
126 public $fk_user_creat;
127 public $fk_user_modif;
141 public $fk_element =
'fk_job';
151 protected $childtables = array(
'hrm_evaluation',
'hrm_job_user');
158 protected $childtablesoncascade = array(
"@SkillRank:hrm/class/skillrank.class.php:fk_object:objecttype='job'");
174 global $conf, $langs;
178 if (empty($conf->global->MAIN_SHOW_TECHNICAL_ID) && isset($this->fields[
'rowid'])) {
179 $this->fields[
'rowid'][
'visible'] = 0;
181 if (!isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
182 $this->fields[
'entity'][
'enabled'] = 0;
192 foreach ($this->fields as $key => $val) {
193 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
194 unset($this->fields[$key]);
199 if (is_object($langs)) {
200 foreach ($this->fields as $key => $val) {
201 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
202 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
203 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
223 return $resultcreate;
235 global $langs, $extrafields;
240 $object =
new self($this->db);
245 $result = $object->fetchCommon($fromid);
246 if ($result > 0 && !empty($object->table_element_line)) {
247 $object->fetchLines();
256 unset($object->fk_user_creat);
257 unset($object->import_key);
260 if (property_exists($object,
'ref')) {
261 $object->ref = empty($this->fields[
'ref'][
'default']) ?
"Copy_Of_".$object->ref : $this->fields[
'ref'][
'default'];
263 if (property_exists($object,
'label')) {
264 $object->label = empty($this->fields[
'label'][
'default']) ? $langs->trans(
"CopyOf").
" ".$object->label : $this->fields[
'label'][
'default'];
266 if (property_exists($object,
'status')) {
267 $object->status = self::STATUS_DRAFT;
269 if (property_exists($object,
'date_creation')) {
270 $object->date_creation =
dol_now();
272 if (property_exists($object,
'date_modification')) {
273 $object->date_modification =
null;
277 if (is_array($object->array_options) && count($object->array_options) > 0) {
278 $extrafields->fetch_name_optionals_label($this->table_element);
279 foreach ($object->array_options as $key => $option) {
280 $shortkey = preg_replace(
'/options_/',
'', $key);
281 if (!empty($extrafields->attributes[$this->table_element][
'unique'][$shortkey])) {
283 unset($object->array_options[$key]);
289 $object->context[
'createfromclone'] =
'createfromclone';
290 $result = $object->createCommon($user);
293 $this->error = $object->error;
294 $this->errors = $object->errors;
306 if (property_exists($this,
'fk_soc') && $this->fk_soc == $object->socid) {
313 unset($object->context[
'createfromclone']);
320 $this->db->rollback();
332 public function fetch($id, $ref =
null)
335 if ($result > 0 && !empty($this->table_element_line)) {
348 $this->lines = array();
366 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, array $filter = array(), $filtermode =
'AND')
376 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
377 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
378 $sql .=
' WHERE t.entity IN ('.getEntity($this->element).
')';
380 $sql .=
' WHERE 1 = 1';
384 if (count($filter) > 0) {
385 foreach ($filter as $key => $value) {
386 if ($key ==
't.rowid') {
387 $sqlwhere[] = $key.
'='.$value;
388 } elseif (in_array($this->fields[$key][
'type'], array(
'date',
'datetime',
'timestamp'))) {
389 $sqlwhere[] = $key.
' = \''.$this->db->idate($value).
'\'';
390 } elseif ($key ==
'customsql') {
391 $sqlwhere[] = $value;
392 } elseif (strpos($value,
'%') ===
false) {
393 $sqlwhere[] = $key.
' IN ('.$this->db->sanitize($this->db->escape($value)).
')';
395 $sqlwhere[] = $key.
' LIKE \'%'.$this->db->escape($value).
'%\'';
399 if (count($sqlwhere) > 0) {
400 $sql .=
" AND (".implode(
" ".$filtermode.
" ", $sqlwhere).
")";
403 if (!empty($sortfield)) {
404 $sql .= $this->db->order($sortfield, $sortorder);
406 if (!empty($limit)) {
407 $sql .=
' '.$this->db->plimit($limit, $offset);
410 $resql = $this->db->query($sql);
412 $num = $this->db->num_rows($resql);
414 while ($i < ($limit ? min($limit, $num) : $num)) {
415 $obj = $this->db->fetch_object($resql);
417 $record =
new self($this->db);
418 $record->setVarsFromFetchObj($obj);
420 $records[$record->id] = $record;
424 $this->db->free($resql);
428 $this->errors[] =
'Error '.$this->db->lasterror();
429 dol_syslog(__METHOD__.
' '.join(
',', $this->errors), LOG_ERR);
454 public function delete(
User $user, $notrigger =
false)
470 if ($this->status < 0) {
471 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
488 global $conf, $langs;
490 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
495 if ($this->status == self::STATUS_VALIDATED) {
496 dol_syslog(get_class($this).
"::validate action abandonned: already validated", LOG_WARNING);
513 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
518 $this->newref = $num;
522 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element;
523 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
524 $sql .=
" status = ".self::STATUS_VALIDATED;
525 if (!empty($this->fields[
'date_validation'])) {
526 $sql .=
", date_validation = '".$this->db->idate($now).
"'";
528 if (!empty($this->fields[
'fk_user_valid'])) {
529 $sql .=
", fk_user_valid = ".((int) $user->id);
531 $sql .=
" WHERE rowid = ".((int) $this->
id);
533 dol_syslog(get_class($this).
"::validate()", LOG_DEBUG);
534 $resql = $this->db->query($sql);
537 $this->error = $this->db->lasterror();
541 if (!$error && !$notrigger) {
543 $result = $this->
call_trigger(
'HRM_JOB_VALIDATE', $user);
552 $this->oldref = $this->ref;
555 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
557 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'job/".$this->db->escape($this->newref).
"'";
558 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'job/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
559 $resql = $this->db->query($sql);
561 $error++; $this->error = $this->db->lasterror();
563 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'job/".$this->db->escape($this->newref).
"'";
564 $sql .=
" WHERE filepath = 'job/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
565 $resql = $this->db->query($sql);
567 $error++; $this->error = $this->db->lasterror();
573 $dirsource = $conf->hrm->dir_output.
'/job/'.$oldref;
574 $dirdest = $conf->hrm->dir_output.
'/job/'.$newref;
575 if (!$error && file_exists($dirsource)) {
576 dol_syslog(get_class($this).
"::validate() rename dir ".$dirsource.
" into ".$dirdest);
578 if (@rename($dirsource, $dirdest)) {
581 $listoffiles =
dol_dir_list($conf->hrm->dir_output.
'/job/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
582 foreach ($listoffiles as $fileentry) {
583 $dirsource = $fileentry[
'name'];
584 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
585 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
586 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
587 @rename($dirsource, $dirdest);
597 $this->status = self::STATUS_VALIDATED;
604 $this->db->rollback();
619 if (empty($Tab))
return '';
621 $lastpos = array_shift($Tab);
638 $TPosition = $position->getForUser($userid);
639 foreach ($TPosition as $UPosition) {
640 $TReturn[$UPosition->Job->rowid] = $UPosition->Job->ref;
655 if ($this->status <= self::STATUS_DRAFT) {
666 return $this->
setStatusCommon($user, self::STATUS_DRAFT, $notrigger,
'JOB_UNVALIDATE');
676 public function cancel($user, $notrigger = 0)
679 if ($this->status != self::STATUS_VALIDATED) {
690 return $this->
setStatusCommon($user, self::STATUS_CANCELED, $notrigger,
'JOB_CANCEL');
700 public function reopen($user, $notrigger = 0)
703 if ($this->status != self::STATUS_CANCELED) {
714 return $this->
setStatusCommon($user, self::STATUS_VALIDATED, $notrigger,
'JOB_REOPEN');
727 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
729 global $conf, $langs, $hookmanager;
731 if (!empty($conf->dol_no_mouse_hover)) {
737 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"JobProfile").
'</u>';
738 if (isset($this->status)) {
739 $label .=
' '.$this->getLibStatut(5);
742 $label .=
'<b>'.$langs->trans(
'Label').
':</b> '.$this->label;
744 $url =
dol_buildpath(
'/hrm/job_card.php', 1).
'?id='.$this->id;
746 if ($option !=
'nolink') {
748 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
749 if ($save_lastsearch_value == -1 && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
750 $add_save_lastsearch_values = 1;
752 if ($add_save_lastsearch_values) {
753 $url .=
'&save_lastsearch_values=1';
758 if (empty($notooltip)) {
759 if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
760 $label = $langs->trans(
"ShowJob");
761 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
763 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
764 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
766 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
769 if ($option ==
'nolink') {
770 $linkstart =
'<span';
772 $linkstart =
'<a href="'.$url.
'"';
774 $linkstart .= $linkclose.
'>';
775 if ($option ==
'nolink') {
776 $linkend =
'</span>';
781 $result .= $linkstart;
783 if (empty($this->showphoto_on_popup)) {
785 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
789 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
791 list($class, $module) = explode(
'@', $this->picto);
792 $upload_dir = $conf->$module->multidir_output[$conf->entity].
"/$class/".
dol_sanitizeFileName($this->label);
794 $filename = $filearray[0][
'name'];
795 if (!empty($filename)) {
796 $pospoint = strpos($filearray[0][
'name'],
'.');
798 $pathtophoto = $class.
'/'.$this->label.
'/thumbs/'.substr($filename, 0, $pospoint).
'_mini'.substr($filename, $pospoint);
799 if (empty($conf->global->{strtoupper($module.
'_'.$class).
'_FORMATLISTPHOTOSASUSERS'})) {
800 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><div class="photoref"><img class="photo'.$module.
'" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div></div>';
802 $result .=
'<div class="floatleft inline-block valignmiddle divphotoref"><img class="photouserphoto userphoto" alt="No photo" border="0" src="'.DOL_URL_ROOT.
'/viewimage.php?modulepart='.$module.
'&entity='.$conf->entity.
'&file='.urlencode($pathtophoto).
'"></div>';
807 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
812 if ($withpicto != 2) {
813 $result .= $this->label;
819 global $action, $hookmanager;
820 $hookmanager->initHooks(array(
'jobdao'));
821 $parameters = array(
'id'=>$this->
id,
'getnomurl' => &$result);
822 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
824 $result = $hookmanager->resPrint;
826 $result .= $hookmanager->resPrint;
840 return $this->LibStatut($this->status, $mode);
886 $sql =
'SELECT rowid, date_creation as datec, tms as datem,';
887 $sql .=
' fk_user_creat, fk_user_modif';
888 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
889 $sql .=
' WHERE t.rowid = '.((int) $id);
890 $result = $this->db->query($sql);
892 if ($this->db->num_rows($result)) {
893 $obj = $this->db->fetch_object($result);
894 $this->
id = $obj->rowid;
896 $this->user_creation_id = $obj->fk_user_creat;
897 $this->user_modification_id = $obj->fk_user_modif;
898 $this->date_creation = $this->db->jdate($obj->datec);
899 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
902 $this->db->free($result);
920 $this->initAsSpecimenCommon();
930 $this->lines = array();
932 $objectline =
new JobLine($this->db);
933 $result = $objectline->fetchAll(
'ASC',
'position', 0, 0, array(
'customsql'=>
'fk_job = '.$this->
id));
935 if (is_numeric($result)) {
936 $this->error = $objectline->error;
937 $this->errors = $objectline->errors;
940 $this->lines = $result;
952 global $langs, $conf;
955 if (empty($conf->global->hrm_JOB_ADDON)) {
956 $conf->global->hrm_JOB_ADDON =
'mod_job_standard';
959 if (!empty($conf->global->hrm_JOB_ADDON)) {
962 $file = $conf->global->hrm_JOB_ADDON.
".php";
963 $classname = $conf->global->hrm_JOB_ADDON;
966 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
967 foreach ($dirmodels as $reldir) {
971 $mybool |= @include_once $dir.$file;
974 if ($mybool ===
false) {
979 if (class_exists($classname)) {
980 $obj =
new $classname();
981 $numref = $obj->getNextValue($this);
983 if ($numref !=
'' && $numref !=
'-1') {
986 $this->error = $obj->error;
991 print $langs->trans(
"Error").
" ".$langs->trans(
"ClassNotFound").
' '.$classname;
995 print $langs->trans(
"ErrorNumberingModuleNotSetup", $this->element);
1011 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
1013 global $conf, $langs;
1016 $includedocgeneration = 0;
1018 $langs->load(
"hrm");
1021 $modele =
'standard_job';
1023 if (!empty($this->model_pdf)) {
1024 $modele = $this->model_pdf;
1025 } elseif (!empty($conf->global->JOB_ADDON_PDF)) {
1026 $modele = $conf->global->JOB_ADDON_PDF;
1030 $modelpath =
"core/modules/hrm/doc/";
1032 if ($includedocgeneration && !empty($modele)) {
1033 $result = $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1048 global $conf, $langs;
1064 $this->db->commit();
1078 global $selected, $langs;
1080 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
1082 $return =
'<div class="box-flex-item box-flex-grow-zero">';
1083 $return .=
'<div class="info-box info-box-sm">';
1084 $return .=
'<span class="info-box-icon bg-infobox-action">';
1086 $return .=
'</span>';
1087 $return .=
'<div class="info-box-content">';
1088 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->getNomUrl(0) : $this->ref).
'</span>';
1089 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1094 if (property_exists($this,
'description') && !(empty($this->
description))) {
1096 $return .=
'<br><span class="info-box-label ">'.(strlen($this->
description) > 30 ?
dol_substr($this->
description, 0, 25).
'...' : $this->description).
'</span>';
1098 $return .=
'</div>';
1099 $return .=
'</div>';
1100 $return .=
'</div>';
1106require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobjectline.class.php';
1119 public $isextrafieldmanaged = 0;
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=false)
Delete a line of object in database.
fetchCommon($id, $ref=null, $morewhere='')
Load object in memory from the database.
createCommon(User $user, $notrigger=false)
Create object into database.
deleteCommon(User $user, $notrigger=false, $forcechilddeletion=0)
Delete object in database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
setStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a status.
copy_linked_contact($objFrom, $source='internal')
Copy contact from one element to current.
updateCommon(User $user, $notrigger=false)
Update object into database.
fetchLinesCommon($morewhere='')
Load object in memory from the database.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
Class to manage Dolibarr database access.
doScheduledJob()
Action executed by scheduler CAN BE A CRON TASK.
update(User $user, $notrigger=false)
Update object into database.
getNextNumRef()
Returns the reference to the following non used object depending on the active numbering module.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter=array(), $filtermode='AND')
Load list of objects in memory from the database.
getLastJobForUser($fk_user)
Get the last occupied position for a user.
fetchLines()
Load object lines in memory from the database.
cancel($user, $notrigger=0)
Set cancel status.
__construct(DoliDB $db)
Constructor.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
setDraft($user, $notrigger=0)
Set draft status.
validate($user, $notrigger=0)
Validate object.
getLibStatut($mode=0)
Return the label of the status.
getLinesArray()
Create an array of lines.
fetch($id, $ref=null)
Load object in memory from the database.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
LibStatut($status, $mode=0)
Return the status.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionaly the picto)
createFromClone(User $user, $fromid)
Clone an object into another one.
create(User $user, $notrigger=false)
Create object into database.
reopen($user, $notrigger=0)
Set back to validated status.
deleteLine(User $user, $idline, $notrigger=false)
Delete a line of object in database.
getForUser($userid)
Get array of occupied positions for a user.
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
info($id)
Load the info information in the object.
__construct(DoliDB $db)
Constructor.
Class to manage Dolibarr users.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_now($mode='auto')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_substr($string, $start, $length=null, $stringencoding='', $trunconbytes=0)
Make a substring.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.