31require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
41 public $module =
'hrm';
46 public $element =
'skill';
51 public $table_element =
'hrm_skill';
57 public $table_element_line =
'skilldet';
62 public $picto =
'shapes';
65 const STATUS_DRAFT = 0;
66 const STATUS_VALIDATED = 1;
67 const STATUS_CANCELED = 9;
68 const DEFAULT_MAX_RANK_PER_SKILL = 3;
100 public $fields = array(
101 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'visible' => 0,
'noteditable' => 1,
'index' => 1,
'css' =>
'left',
'comment' =>
"Id"),
102 'label' => array(
'type' =>
'varchar(255)',
'label' =>
'Label',
'enabled' => 1,
'position' => 30,
'notnull' => 1,
'visible' => 1,
'searchall' => 1,
'css' =>
'minwidth300',
'cssview' =>
'wordbreak',
'showoncombobox' => 2,),
103 'description' => array(
'type' =>
'text',
'label' =>
'Description',
'enabled' => 1,
'position' => 60,
'notnull' => 0,
'visible' => 3,),
104 'date_creation' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'position' => 500,
'notnull' => 1,
'visible' => -2,),
105 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'position' => 501,
'notnull' => 0,
'visible' => -2,),
106 'fk_user_creat' => array(
'type' =>
'integer:User:user/class/user.class.php:0',
'label' =>
'UserAuthor',
'enabled' => 1,
'position' => 510,
'notnull' => 1,
'visible' => -2,
'foreignkey' =>
'user.rowid',),
107 'fk_user_modif' => array(
'type' =>
'integer:User:user/class/user.class.php:0',
'label' =>
'UserModif',
'enabled' => 1,
'position' => 511,
'notnull' => -1,
'visible' => -2,),
108 'required_level' => array(
'type' =>
'integer',
'label' =>
'requiredLevel',
'enabled' => 1,
'position' => 50,
'notnull' => 1,
'visible' => 0,),
109 'date_validite' => array(
'type' =>
'integer',
'label' =>
'date_validite',
'enabled' => 1,
'position' => 52,
'notnull' => 1,
'visible' => 0,),
110 'temps_theorique' => array(
'type' =>
'double(24,8)',
'label' =>
'temps_theorique',
'enabled' => 1,
'position' => 54,
'notnull' => 1,
'visible' => 0,),
111 'skill_type' => array(
'type' =>
'integer',
'label' =>
'SkillType',
'enabled' => 1,
'position' => 55,
'notnull' => 1,
'visible' => 1,
'index' => 1,
'css' =>
'minwidth200',
'arrayofkeyval' => array(
'0' =>
'TypeKnowHow',
'1' =>
'TypeHowToBe',
'9' =>
'TypeKnowledge'),
'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,),
118 public $date_creation;
119 public $fk_user_creat;
120 public $fk_user_modif;
121 public $required_level;
122 public $date_validite;
123 public $temps_theorique;
138 public $fk_element =
'fk_skill';
148 protected $childtables = array(
149 'hrm_skillrank' => [
'name' =>
'SkillRank'],
150 'hrm_evaluationdet' => [
'name' =>
'EvaluationDet'],
158 protected $childtablesoncascade = array(
'hrm_skilldet');
174 global $conf, $langs;
178 $this->ismultientitymanaged = 0;
179 $this->isextrafieldmanaged = 1;
182 $this->fields[
'rowid'][
'visible'] = 0;
184 if (!isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
185 $this->fields[
'entity'][
'enabled'] = 0;
195 foreach ($this->fields as $key => $val) {
196 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
197 unset($this->fields[$key]);
202 if (is_object($langs)) {
203 foreach ($this->fields as $key => $val) {
204 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
205 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
206 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
227 if ($resultcreate > 0) {
232 return $resultcreate;
243 global $conf, $user, $langs;
245 $MaxNumberSkill =
getDolGlobalInt(
'HRM_MAXRANK', self::DEFAULT_MAX_RANK_PER_SKILL);
246 $defaultSkillDesc =
getDolGlobalString(
'HRM_DEFAULT_SKILL_DESCRIPTION', $langs->trans(
"NoDescription"));
250 require_once __DIR__ .
'/skilldet.class.php';
255 while ($i <= $MaxNumberSkill) {
256 $skilldet =
new Skilldet($this->db);
257 $skilldet->description = $defaultSkillDesc .
" " . $i;
258 $skilldet->rankorder = $i;
259 $skilldet->fk_skill = $this->id;
261 $result = $skilldet->create($user);
274 $this->db->rollback();
288 global $langs, $extrafields;
298 $result =
$object->fetchCommon($fromid);
299 if ($result > 0 && !empty(
$object->table_element_line)) {
313 if (property_exists(
$object,
'ref')) {
314 $object->ref = empty($this->fields[
'ref'][
'default']) ?
"Copy_Of_".$object->ref : $this->fields[
'ref'][
'default'];
316 if (property_exists(
$object,
'label')) {
317 $object->label = empty($this->fields[
'label'][
'default']) ? $langs->trans(
"CopyOf").
" ".
$object->label : $this->fields[
'label'][
'default'];
319 if (property_exists(
$object,
'status')) {
320 $object->status = self::STATUS_DRAFT;
322 if (property_exists(
$object,
'date_creation')) {
325 if (property_exists(
$object,
'date_modification')) {
326 $object->date_modification =
null;
330 if (is_array(
$object->array_options) && count(
$object->array_options) > 0) {
331 $extrafields->fetch_name_optionals_label($this->table_element);
332 foreach (
$object->array_options as $key => $option) {
333 $shortkey = preg_replace(
'/options_/',
'', $key);
334 if (!empty($extrafields->attributes[$this->table_element][
'unique'][$shortkey])) {
336 unset(
$object->array_options[$key]);
342 $object->context[
'createfromclone'] =
'createfromclone';
343 $result =
$object->createCommon($user);
358 if (property_exists($this,
'fk_soc') && $this->fk_soc ==
$object->socid) {
365 unset(
$object->context[
'createfromclone']);
372 $this->db->rollback();
384 public function fetch($id, $ref =
null)
387 if ($result > 0 && !empty($this->table_element_line)) {
400 $this->lines = array();
401 require_once __DIR__ .
'/skilldet.class.php';
402 $skilldet =
new Skilldet($this->db);
403 $this->lines = $skilldet->fetchAll(
'ASC',
'', 0, 0,
'(fk_skill:=:'.$this->
id.
')');
405 if (is_array($this->lines)) {
406 return (count($this->lines) > 0) ? $this->lines : array();
407 } elseif ($this->lines < 0) {
427 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, $filter =
'', $filtermode =
'AND')
435 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
436 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
437 $sql .=
' WHERE t.entity IN ('.getEntity($this->element).
')';
439 $sql .=
' WHERE 1 = 1';
446 $this->errors[] = $errormessage;
447 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
451 if (!empty($sortfield)) {
452 $sql .= $this->db->order($sortfield, $sortorder);
454 if (!empty($limit)) {
455 $sql .=
' '.$this->db->plimit($limit, $offset);
458 $resql = $this->db->query($sql);
460 $num = $this->db->num_rows($resql);
462 while ($i < ($limit ? min($limit, $num) : $num)) {
463 $obj = $this->db->fetch_object($resql);
465 $record =
new self($this->db);
466 $record->setVarsFromFetchObj($obj);
468 $records[$record->id] = $record;
472 $this->db->free($resql);
476 $this->errors[] =
'Error '.$this->db->lasterror();
477 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
502 public function delete(
User $user, $notrigger = 0)
518 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
537 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
542 if ($this->
status == self::STATUS_VALIDATED) {
543 dol_syslog(get_class($this).
"::validate action abandoned: already validated", LOG_WARNING);
560 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
565 $this->newref = $num;
569 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element;
570 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
571 $sql .=
" status = ".self::STATUS_VALIDATED;
572 if (!empty($this->fields[
'date_validation'])) {
573 $sql .=
", date_validation = '".$this->db->idate($now).
"'";
575 if (!empty($this->fields[
'fk_user_valid'])) {
576 $sql .=
", fk_user_valid = ".((int) $user->id);
578 $sql .=
" WHERE rowid = ".((int) $this->
id);
580 dol_syslog(get_class($this).
"::validate()", LOG_DEBUG);
581 $resql = $this->db->query($sql);
584 $this->error = $this->db->lasterror();
588 if (!$error && !$notrigger) {
590 $result = $this->
call_trigger(
'HRM_SKILL_VALIDATE', $user);
599 $this->oldref = $this->ref;
602 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
604 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'skill/".$this->db->escape($this->newref).
"'";
605 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'skill/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
606 $resql = $this->db->query($sql);
609 $this->error = $this->db->lasterror();
611 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'skill/".$this->db->escape($this->newref).
"'";
612 $sql .=
" WHERE filepath = 'skill/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
613 $resql = $this->db->query($sql);
616 $this->error = $this->db->lasterror();
622 $dirsource = $conf->hrm->dir_output.
'/skill/'.$oldref;
623 $dirdest = $conf->hrm->dir_output.
'/skill/'.$newref;
624 if (!$error && file_exists($dirsource)) {
625 dol_syslog(get_class($this).
"::validate() rename dir ".$dirsource.
" into ".$dirdest);
627 if (@rename($dirsource, $dirdest)) {
630 $listoffiles =
dol_dir_list($conf->hrm->dir_output.
'/skill/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
631 foreach ($listoffiles as $fileentry) {
632 $dirsource = $fileentry[
'name'];
633 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
634 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
635 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
636 @rename($dirsource, $dirdest);
646 $this->
status = self::STATUS_VALIDATED;
653 $this->db->rollback();
669 if ($this->
status <= self::STATUS_DRAFT) {
680 return $this->
setStatusCommon($user, self::STATUS_DRAFT, $notrigger,
'SKILL_UNVALIDATE');
690 public function cancel($user, $notrigger = 0)
693 if ($this->
status != self::STATUS_VALIDATED) {
704 return $this->
setStatusCommon($user, self::STATUS_CANCELED, $notrigger,
'SKILL_CANCEL');
714 public function reopen($user, $notrigger = 0)
717 if ($this->
status != self::STATUS_CANCELED) {
728 return $this->
setStatusCommon($user, self::STATUS_VALIDATED, $notrigger,
'SKILL_REOPEN');
751 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
753 global $conf, $langs, $hookmanager;
755 if (!empty($conf->dol_no_mouse_hover)) {
761 $label =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"Skill").
'</u>';
762 if (isset($this->
status)) {
763 $label .=
' '.$this->getLibStatut(5);
766 $label .=
'<b>'.$langs->trans(
'Label').
':</b> '.$this->label;
769 $url =
dol_buildpath(
'/hrm/skill_card.php', 1).
'?id='.$this->id;
771 if ($option !=
'nolink') {
773 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
774 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
775 $add_save_lastsearch_values = 1;
777 if ($add_save_lastsearch_values) {
778 $url .=
'&save_lastsearch_values=1';
783 if (empty($notooltip)) {
785 $label = $langs->trans(
"ShowSkill");
786 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
788 $linkclose .=
' title="'.dol_escape_htmltag($label, 1).
'"';
789 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
791 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
794 if ($option ==
'nolink') {
795 $linkstart =
'<span';
797 $linkstart =
'<a href="'.$url.
'"';
799 $linkstart .= $linkclose.
'>';
800 if ($option ==
'nolink') {
801 $linkend =
'</span>';
806 $result .= $linkstart;
808 if (empty($this->showphoto_on_popup)) {
810 $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);
814 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
816 list($class, $module) = explode(
'@', $this->picto);
819 $filename = $filearray[0][
'name'];
820 if (!empty($filename)) {
821 $pospoint = strpos($filearray[0][
'name'],
'.');
823 $pathtophoto = $class.
'/'.$this->
ref.
'/thumbs/'.substr($filename, 0, $pospoint).
'_mini'.substr($filename, $pospoint);
825 $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>';
827 $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>';
832 $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);
837 if ($withpicto != 2) {
838 $result .= $this->label;
844 global $action, $hookmanager;
845 $hookmanager->initHooks(array(
'skilldao'));
846 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
847 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
849 $result = $hookmanager->resPrint;
851 $result .= $hookmanager->resPrint;
878 if (empty($status)) {
883 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
886 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
887 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
888 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
889 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
890 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
891 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
894 $statusType =
'status'.$status;
896 if ($status == self::STATUS_CANCELED) {
897 $statusType =
'status6';
900 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
911 $sql =
'SELECT rowid, date_creation as datec, tms as datem,';
912 $sql .=
' fk_user_creat, fk_user_modif';
913 $sql .=
' FROM '.MAIN_DB_PREFIX.$this->table_element.
' as t';
914 $sql .=
' WHERE t.rowid = '.((int) $id);
915 $result = $this->db->query($sql);
917 if ($this->db->num_rows($result)) {
918 $obj = $this->db->fetch_object($result);
920 $this->
id = $obj->rowid;
922 $this->user_creation_id = $obj->fk_user_creat;
923 $this->user_modification_id = $obj->fk_user_modif;
924 $this->date_creation = $this->db->jdate($obj->datec);
925 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
928 $this->db->free($result);
956 $this->lines = array();
958 $objectline =
new Skilldet($this->db);
959 $result = $objectline->fetchAll(
'ASC',
'rankorder', 0, 0,
'(fk_skill:=:'.((
int) $this->
id).
')');
961 if (is_numeric($result)) {
965 $this->lines = $result;
977 global $langs, $conf;
981 $conf->global->hrm_SKILL_ADDON =
'mod_skill_standard';
991 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
992 foreach ($dirmodels as $reldir) {
996 $mybool = ((bool) @include_once $dir.$file) || $mybool;
999 if ($mybool ===
false) {
1004 if (class_exists($classname)) {
1005 $obj =
new $classname();
1006 $numref = $obj->getNextValue($this);
1008 if ($numref !=
'' && $numref !=
'-1') {
1011 $this->error = $obj->error;
1016 print $langs->trans(
"Error").
" ".$langs->trans(
"ClassNotFound").
' '.$classname;
1020 print $langs->trans(
"ErrorNumberingModuleNotSetup", $this->element);
1036 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
1038 global $conf, $langs;
1041 $includedocgeneration = 0;
1043 $langs->load(
"hrm");
1046 $modele =
'standard_skill';
1048 if (!empty($this->model_pdf)) {
1049 $modele = $this->model_pdf;
1055 $modelpath =
"core/modules/hrm/doc/";
1057 if ($includedocgeneration && !empty($modele)) {
1058 $result = $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
1073 case 0: $result = $langs->trans(
"TypeKnowHow");
1075 case 1: $result = $langs->trans(
"TypeHowToBe");
1077 case 9: $result = $langs->trans(
"TypeKnowledge");
1092 global $selected, $langs;
1094 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
1096 $return =
'<div class="box-flex-item box-flex-grow-zero">';
1097 $return .=
'<div class="info-box info-box-sm">';
1098 $return .=
'<span class="info-box-icon bg-infobox-action">';
1100 $return .=
'</span>';
1101 $return .=
'<div class="info-box-content">';
1102 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
1103 if ($selected >= 0) {
1104 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1106 if (property_exists($this,
'skill_type')) {
1107 $return .=
'<br><span class="opacitymedium">'.$langs->trans(
"Type").
'</span>';
1108 $return .=
' : <span class="info-box-label ">'.$this->fields[
'skill_type'][
'arrayofkeyval'][$this->skill_type].
'</span>';
1110 if (property_exists($this,
'description')) {
1111 $return .=
'<br><span class="info-box-label opacitymedium">'.$langs->trans(
"Description").
'</span> : ';
1112 $return .=
'<br><span class="info-box-label ">'.(strlen($this->
description) > 30 ?
dol_substr($this->
description, 0, 25).
'...' : $this->description).
'</span>';
1114 $return .=
'</div>';
1115 $return .=
'</div>';
1116 $return .=
'</div>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=0)
Delete a line of object in database.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
setErrorsFromObject($object)
setErrorsFromObject
createCommon(User $user, $notrigger=0)
Create object in the database.
getFieldList($alias='', $excludefields=array())
Function to concat keys of fields.
updateCommon(User $user, $notrigger=0)
Update object into database.
setStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a status.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
copy_linked_contact($objFrom, $source='internal')
Copy contact from one element to current.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage Dolibarr database access.
LibStatut($status, $mode=0)
Return the status.
createSkills($i=1)
createSkills
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
info($id)
Load the info information in the object.
__construct(DoliDB $db)
Constructor.
getLinesArray()
Create an array of lines.
static typeCodeToLabel($code)
create(User $user, $notrigger=0)
Create object into database.
cancel($user, $notrigger=0)
Set cancel status.
getLibStatut($mode=0)
Return the label of the status.
update(User $user, $notrigger=0)
Update object into database.
getNextNumRef()
Returns the reference to the following non used object depending on the active numbering module.
createFromClone(User $user, $fromid)
Clone an object into another one.
setDraft($user, $notrigger=0)
Set draft status.
reopen($user, $notrigger=0)
Set back to validated status.
deleteLine(User $user, $idline, $notrigger=0)
Delete a line of object in database.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
fetch($id, $ref=null)
Load object in memory from the database.
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
fetchLines()
Load object lines in memory from the database.
validate($user, $notrigger=0)
Validate object.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
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($utf8_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.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dolGetFirstLineOfText($text, $nboflines=1, $charset='UTF-8')
Return first line of text.
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.