28require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
40 public $module =
'timespent';
45 public $element =
'timespent';
50 public $table_element =
'element_time';
55 public $picto =
'fa-file';
58 const STATUS_DRAFT = 0;
59 const STATUS_VALIDATED = 1;
60 const STATUS_CANCELED = 9;
106 public $fields = array(
107 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'visible' => 0,
'noteditable' => 1,
'index' => 1,
'css' =>
'left',
'comment' =>
"Id"),
108 'ref_ext' => array(
'type' =>
'varchar(255)',
'label' =>
'RefExt',
'enabled' => 1,
'visible' => 0,
'position' => 20),
109 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'position' => 17,
'notnull' => 0,
'visible' => -2,),
110 'import_key' => array(
'type' =>
'varchar(14)',
'label' =>
'import_key',
'enabled' => 1,
'position' => 15,
'notnull' => 0,
'visible' => -1,),
111 'fk_element' => array(
'type' =>
'integer',
'label' =>
'fk_element',
'enabled' => 1,
'position' => 2,
'notnull' => 1,
'visible' => -1,),
112 'elementtype' => array(
'type' =>
'varchar(32)',
'label' =>
'elementtype',
'enabled' => 1,
'position' => 3,
'notnull' => 1,
'visible' => -1,),
113 'element_date' => array(
'type' =>
'date',
'label' =>
'element_date',
'enabled' => 1,
'position' => 4,
'notnull' => 0,
'visible' => -1,),
114 'element_datehour' => array(
'type' =>
'datetime',
'label' =>
'element_datehour',
'enabled' => 1,
'position' => 5,
'notnull' => 0,
'visible' => -1,),
115 'element_date_withhour' => array(
'type' =>
'integer',
'label' =>
'element_date_withhour',
'enabled' => 1,
'position' => 6,
'notnull' => 0,
'visible' => -1,),
116 'element_duration' => array(
'type' =>
'double',
'label' =>
'element_duration',
'enabled' => 1,
'position' => 7,
'notnull' => 0,
'visible' => -1,),
117 'fk_product' => array(
'type' =>
'integer',
'label' =>
'fk_product',
'enabled' => 1,
'position' => 8,
'notnull' => 0,
'visible' => -1,),
118 'fk_user' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'fk_user',
'enabled' => 1,
'position' => 9,
'notnull' => 0,
'visible' => -1,),
119 'thm' => array(
'type' =>
'double(24,8)',
'label' =>
'thm',
'enabled' => 1,
'position' => 10,
'notnull' => 0,
'visible' => -1,),
120 'invoice_id' => array(
'type' =>
'integer',
'label' =>
'invoice_id',
'enabled' => 1,
'position' => 11,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
121 'invoice_line_id' => array(
'type' =>
'integer',
'label' =>
'invoice_line_id',
'enabled' => 1,
'position' => 12,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
122 'intervention_id' => array(
'type' =>
'integer',
'label' =>
'intervention_id',
'enabled' => 1,
'position' => 13,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
123 'intervention_line_id' => array(
'type' =>
'integer',
'label' =>
'intervention_line_id',
'enabled' => 1,
'position' => 14,
'notnull' => 0,
'visible' => -1,
'default' =>
'NULL',),
124 'datec' => array(
'type' =>
'datetime',
'label' =>
'datec',
'enabled' => 1,
'position' => 16,
'notnull' => 0,
'visible' => -1,),
125 'note' => array(
'type' =>
'text',
'label' =>
'note',
'enabled' => 1,
'position' => 18,
'notnull' => 0,
'visible' => -1,),
151 public $element_date;
156 public $element_datehour;
161 public $element_date_withhour;
166 public $element_duration;
191 public $invoice_line_id;
196 public $intervention_id;
201 public $intervention_line_id;
225 $this->ismultientitymanaged = 0;
226 $this->isextrafieldmanaged = 0;
228 if (!
getDolGlobalString(
'MAIN_SHOW_TECHNICAL_ID') && isset($this->fields[
'rowid']) && !empty($this->fields[
'ref'])) {
229 $this->fields[
'rowid'][
'visible'] = 0;
231 if (!isModEnabled(
'multicompany') && isset($this->fields[
'entity'])) {
232 $this->fields[
'entity'][
'enabled'] = 0;
242 foreach ($this->fields as $key => $val) {
243 if (isset($val[
'enabled']) && empty($val[
'enabled'])) {
244 unset($this->fields[$key]);
249 if (is_object($langs)) {
250 foreach ($this->fields as $key => $val) {
251 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
252 foreach ($val[
'arrayofkeyval'] as $key2 => $val2) {
253 $this->fields[$key][
'arrayofkeyval'][$key2] = $langs->trans($val2);
273 return $resultcreate;
296 $result =
$object->fetchCommon($fromid);
301 unset(
$object->user_creation_id);
305 if (property_exists(
$object,
'ref')) {
306 $object->ref = empty($this->fields[
'ref'][
'default']) ?
"Copy_Of_".$object->ref : $this->fields[
'ref'][
'default'];
308 if (property_exists(
$object,
'status')) {
309 $object->status = self::STATUS_DRAFT;
311 if (property_exists(
$object,
'date_creation')) {
314 if (property_exists(
$object,
'date_modification')) {
315 $object->date_modification =
null;
319 if (is_array(
$object->array_options) && count(
$object->array_options) > 0) {
320 $extrafields->fetch_name_optionals_label($this->table_element);
321 foreach (
$object->array_options as $key => $option) {
322 $shortkey = preg_replace(
'/options_/',
'', $key);
323 if (!empty($extrafields->attributes[$this->table_element][
'unique'][$shortkey])) {
326 unset(
$object->array_options[$key]);
332 $object->context[
'createfromclone'] =
'createfromclone';
333 $result =
$object->createCommon($user);
337 $this->errors =
$object->errors;
349 if (!empty(
$object->socid) && property_exists($this,
'fk_soc') && $this->fk_soc ==
$object->socid) {
356 unset(
$object->context[
'createfromclone']);
363 $this->db->rollback();
375 public function fetch($id, $ref =
null)
394 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, $filter =
'', $filtermode =
'AND')
404 $sql .=
" FROM ".$this->db->prefix().$this->table_element.
" as t";
405 if (isset($this->ismultientitymanaged) && $this->ismultientitymanaged == 1) {
406 $sql .=
" WHERE t.entity IN (".getEntity($this->element).
")";
408 $sql .=
" WHERE 1 = 1";
415 $this->errors[] = $errormessage;
416 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
420 if (!empty($sortfield)) {
421 $sql .= $this->db->order($sortfield, $sortorder);
423 if (!empty($limit)) {
424 $sql .= $this->db->plimit($limit, $offset);
427 $resql = $this->db->query($sql);
429 $num = $this->db->num_rows($resql);
431 while ($i < ($limit ? min($limit, $num) : $num)) {
432 $obj = $this->db->fetch_object($resql);
434 $record =
new self($this->db);
435 $record->setVarsFromFetchObj($obj);
437 $records[$record->id] = $record;
441 $this->db->free($resql);
445 $this->errors[] =
'Error '.$this->db->lasterror();
446 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
471 public function delete(
User $user, $notrigger = 0)
488 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
505 global
$conf, $langs;
507 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
512 if ($this->
status == self::STATUS_VALIDATED) {
513 dol_syslog(get_class($this).
"::validate action abandoned: already validated", LOG_WARNING);
530 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
535 $this->newref = $num;
539 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element;
540 $sql .=
" SET ref = '".$this->db->escape($num).
"',";
541 $sql .=
" status = ".self::STATUS_VALIDATED;
542 if (!empty($this->fields[
'date_validation'])) {
543 $sql .=
", date_validation = '".$this->db->idate($now).
"'";
545 if (!empty($this->fields[
'fk_user_valid'])) {
546 $sql .=
", fk_user_valid = ".((int) $user->id);
548 $sql .=
" WHERE rowid = ".((int) $this->
id);
550 dol_syslog(get_class($this).
"::validate()", LOG_DEBUG);
551 $resql = $this->db->query($sql);
554 $this->error = $this->db->lasterror();
558 if (!$error && !$notrigger) {
560 $result = $this->
call_trigger(
'timespent_VALIDATE', $user);
569 $this->oldref = $this->ref;
572 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
574 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'timespent/".$this->db->escape($this->newref).
"'";
575 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'timespent/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
576 $resql = $this->db->query($sql);
579 $this->error = $this->db->lasterror();
581 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'timespent/".$this->db->escape($this->newref).
"'";
582 $sql .=
" WHERE filepath = 'timespent/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
583 $resql = $this->db->query($sql);
586 $this->error = $this->db->lasterror();
592 $dirsource =
$conf->timespent->dir_output.
'/timespent/'.$oldref;
593 $dirdest =
$conf->timespent->dir_output.
'/timespent/'.$newref;
594 if (!$error && file_exists($dirsource)) {
595 dol_syslog(get_class($this).
"::validate() rename dir ".$dirsource.
" into ".$dirdest);
597 if (@rename($dirsource, $dirdest)) {
600 $listoffiles =
dol_dir_list(
$conf->timespent->dir_output.
'/timespent/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
601 foreach ($listoffiles as $fileentry) {
602 $dirsource = $fileentry[
'name'];
603 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
604 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
605 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
606 @rename($dirsource, $dirdest);
616 $this->
status = self::STATUS_VALIDATED;
623 $this->db->rollback();
639 if ($this->
status <= self::STATUS_DRAFT) {
650 return $this->
setStatusCommon($user, self::STATUS_DRAFT, $notrigger,
'timespent_UNVALIDATE');
660 public function cancel($user, $notrigger = 0)
663 if ($this->
status != self::STATUS_VALIDATED) {
674 return $this->
setStatusCommon($user, self::STATUS_CANCELED, $notrigger,
'timespent_CANCEL');
684 public function reopen($user, $notrigger = 0)
687 if ($this->
status == self::STATUS_VALIDATED) {
698 return $this->
setStatusCommon($user, self::STATUS_VALIDATED, $notrigger,
'timespent_REOPEN');
709 global
$conf, $langs, $user;
714 return [
'optimize' => $langs->trans(
"ShowTimeSpent")];
716 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u>'.$langs->trans(
"TimeSpent").
'</u>';
717 if (isset($this->
status)) {
718 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
720 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
735 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
737 global
$conf, $langs, $hookmanager;
739 if (!empty(
$conf->dol_no_mouse_hover)) {
746 'objecttype' => $this->element,
749 $classfortooltip =
'classfortooltip';
752 $classfortooltip =
'classforajaxtooltip';
753 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
759 $url =
dol_buildpath(
'/timespent/timespent_card.php', 1).
'?id='.$this->id;
761 if ($option !=
'nolink') {
763 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
764 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
765 $add_save_lastsearch_values = 1;
767 if ($url && $add_save_lastsearch_values) {
768 $url .=
'&save_lastsearch_values=1';
773 if (empty($notooltip)) {
775 $label = $langs->trans(
"ShowTimeSpent");
776 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
778 $linkclose .= ($label ?
' title="'.dolPrintHTMLForAttribute($label).
'"' :
' title="tocomplete"');
779 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
781 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
784 if ($option ==
'nolink' || empty($url)) {
785 $linkstart =
'<span';
787 $linkstart =
'<a href="'.$url.
'"';
789 $linkstart .= $linkclose.
'>';
790 if ($option ==
'nolink' || empty($url)) {
791 $linkend =
'</span>';
796 $result .= $linkstart;
798 if (empty($this->showphoto_on_popup)) {
800 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') : $dataparams.
' class="'.(($withpicto != 2) ?
'paddingright ' :
'').$classfortooltip.
'"'), 0, 0, $notooltip ? 0 : 1);
804 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
806 list($class, $module) = explode(
'@', $this->picto);
809 $filename = $filearray[0][
'name'];
810 if (!empty($filename)) {
811 $pospoint = strpos($filearray[0][
'name'],
'.');
813 $pathtophoto = $class.
'/'.$this->
ref.
'/thumbs/'.substr($filename, 0, $pospoint).
'_mini'.substr($filename, $pospoint);
815 $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>';
817 $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>';
822 $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);
827 if ($withpicto != 2) {
828 $result .= $this->ref;
834 global $action, $hookmanager;
835 $hookmanager->initHooks(array($this->element.
'dao'));
836 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
837 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
839 $result = $hookmanager->resPrint;
841 $result .= $hookmanager->resPrint;
856 global
$conf, $langs;
858 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
860 $return =
'<div class="box-flex-item box-flex-grow-zero">';
861 $return .=
'<div class="info-box info-box-sm">';
862 $return .=
'<span class="info-box-icon bg-infobox-action">';
864 $return .=
'</span>';
865 $return .=
'<div class="info-box-content">';
866 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
867 if ($selected >= 0) {
868 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
870 if (property_exists($this,
'label')) {
871 $return .=
' <div class="inline-block opacitymedium valignmiddle tdoverflowmax100">'.$this->label.
'</div>';
873 if (property_exists($this,
'amount')) {
876 $return .=
'<span class="info-box-label amount">'.price($this->amount, 0, $langs, 1, -1, -1,
$conf->currency).
'</span>';
878 if (method_exists($this,
'getLibStatut')) {
879 $return .=
'<br><div class="info-box-status">'.$this->getLibStatut(5).
'</div>';
921 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
924 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
925 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
926 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
927 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
928 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Enabled');
929 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Disabled');
932 $statusType =
'status'.$status;
934 if ($status == self::STATUS_CANCELED) {
935 $statusType =
'status6';
938 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
949 $sql =
"SELECT rowid,";
950 $sql .=
" date_creation as datec, tms as datem,";
951 $sql .=
" fk_user_creat, fk_user_modif";
952 $sql .=
" FROM ".MAIN_DB_PREFIX.$this->table_element.
" as t";
953 $sql .=
" WHERE t.rowid = ".((int) $id);
955 $result = $this->db->query($sql);
957 if ($this->db->num_rows($result)) {
958 $obj = $this->db->fetch_object($result);
960 $this->
id = $obj->rowid;
962 $this->user_creation_id = $obj->fk_user_creat;
963 $this->user_modification_id = $obj->fk_user_modif;
964 $this->date_creation = $this->db->jdate($obj->datec);
965 $this->date_modification = empty($obj->datem) ?
'' : $this->db->jdate($obj->datem);
968 $this->db->free($result);
996 global $langs,
$conf;
997 $langs->load(
"timespent@timespent");
1000 $conf->global->TIMESPENT_timespent_ADDON =
'mod_timespent_standard';
1010 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
1011 foreach ($dirmodels as $reldir) {
1015 $mybool = ((bool) @include_once $dir.$file) || $mybool;
1023 if (class_exists($classname)) {
1024 $obj =
new $classname();
1025 '@phan-var-force CommonNumRefGenerator $obj';
1026 $numref = $obj->getNextValue($this);
1028 if ($numref !=
'' && $numref !=
'-1') {
1031 $this->error = $obj->error;
1036 print $langs->trans(
"Error").
" ".$langs->trans(
"ClassNotFound").
' '.$classname;
1040 print $langs->trans(
"ErrorNumberingModuleNotSetup", $this->element);
1056 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
1058 global
$conf, $langs;
1061 $includedocgeneration = 0;
1063 $langs->load(
"timespent@timespent");
1066 $modele =
'standard_timespent';
1068 if (!empty($this->model_pdf)) {
1069 $modele = $this->model_pdf;
1075 $modelpath =
"core/modules/timespent/doc/";
1077 if ($includedocgeneration && !empty($modele)) {
1078 $result = $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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.
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.
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)
fetch($id, $ref=null)
Load object in memory from the database.
setDraft($user, $notrigger=0)
Set draft status.
getTooltipContentArray($params)
getTooltipContentArray
cancel($user, $notrigger=0)
Set cancel status.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
deleteLine(User $user, $idline, $notrigger=0)
Delete a line of object in database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load list of objects in memory from the database.
getLabelStatus($mode=0)
Return the label of the status.
__construct(DoliDB $db)
Constructor.
getLibStatut($mode=0)
Return the label of the status.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
reopen($user, $notrigger=0)
Set back to validated status.
createFromClone(User $user, $fromid)
Clone an object into another one.
info($id)
Load the info information in the object.
LibStatut($status, $mode=0)
Return the status.
update(User $user, $notrigger=0)
Update object into database.
create(User $user, $notrigger=0)
Create object into database.
getNextNumRef()
Returns the reference to the following non used object depending on the active numbering module.
getKanbanView($option='', $arraydata=null)
Return a thumb for kanban views.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
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_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
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.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...