dolibarr  16.0.5
dolresource.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2013-2015 Jean-François Ferry <jfefe@aternatik.fr>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 require_once DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php";
25 require_once DOL_DOCUMENT_ROOT."/core/lib/functions2.lib.php";
26 
31 {
35  public $element = 'dolresource';
36 
40  public $table_element = 'resource';
41 
45  public $picto = 'resource';
46 
47  public $resource_id;
48  public $resource_type;
49  public $element_id;
50  public $element_type;
51  public $busy;
52  public $mandatory;
53 
57  public $fk_user_create;
58 
59  public $type_label;
60  public $tms = '';
61 
62  public $cache_code_type_resource = array();
63 
67  public $oldcopy;
68 
74  public function __construct($db)
75  {
76  $this->db = $db;
77  }
78 
86  public function create($user, $notrigger = 0)
87  {
88  global $conf, $langs, $hookmanager;
89  $error = 0;
90 
91  // Clean parameters
92 
93  if (isset($this->ref)) {
94  $this->ref = trim($this->ref);
95  }
96  if (isset($this->description)) {
97  $this->description = trim($this->description);
98  }
99  if (!is_numeric($this->country_id)) {
100  $this->country_id = 0;
101  }
102  if (isset($this->fk_code_type_resource)) {
103  $this->fk_code_type_resource = trim($this->fk_code_type_resource);
104  }
105  if (isset($this->note_public)) {
106  $this->note_public = trim($this->note_public);
107  }
108  if (isset($this->note_private)) {
109  $this->note_private = trim($this->note_private);
110  }
111 
112 
113  // Insert request
114  $sql = "INSERT INTO ".MAIN_DB_PREFIX.$this->table_element."(";
115  $sql .= "entity,";
116  $sql .= "ref,";
117  $sql .= "description,";
118  $sql .= "fk_country,";
119  $sql .= "fk_code_type_resource,";
120  $sql .= "note_public,";
121  $sql .= "note_private";
122  $sql .= ") VALUES (";
123  $sql .= $conf->entity.", ";
124  $sql .= " ".(!isset($this->ref) ? 'NULL' : "'".$this->db->escape($this->ref)."'").",";
125  $sql .= " ".(!isset($this->description) ? 'NULL' : "'".$this->db->escape($this->description)."'").",";
126  $sql .= " ".($this->country_id > 0 ? $this->country_id : 'null').",";
127  $sql .= " ".(!isset($this->fk_code_type_resource) ? 'NULL' : "'".$this->db->escape($this->fk_code_type_resource)."'").",";
128  $sql .= " ".(!isset($this->note_public) ? 'NULL' : "'".$this->db->escape($this->note_public)."'").",";
129  $sql .= " ".(!isset($this->note_private) ? 'NULL' : "'".$this->db->escape($this->note_private)."'");
130  $sql .= ")";
131 
132  $this->db->begin();
133 
134  dol_syslog(get_class($this)."::create", LOG_DEBUG);
135  $resql = $this->db->query($sql);
136  if (!$resql) {
137  $error++; $this->errors[] = "Error ".$this->db->lasterror();
138  }
139 
140  if (!$error) {
141  $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
142  }
143 
144  if (!$error) {
145  $action = 'create';
146 
147  // Actions on extra fields
148  if (!$error) {
149  $result = $this->insertExtraFields();
150  if ($result < 0) {
151  $error++;
152  }
153  }
154  }
155 
156  if (!$error && !$notrigger) {
157  // Call trigger
158  $result = $this->call_trigger('RESOURCE_CREATE', $user);
159  if ($result < 0) {
160  $error++;
161  }
162  // End call triggers
163  }
164 
165  // Commit or rollback
166  if ($error) {
167  foreach ($this->errors as $errmsg) {
168  dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
169  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
170  }
171  $this->db->rollback();
172  return -1 * $error;
173  } else {
174  $this->db->commit();
175  return $this->id;
176  }
177  }
178 
186  public function fetch($id, $ref = '')
187  {
188  global $langs;
189  $sql = "SELECT";
190  $sql .= " t.rowid,";
191  $sql .= " t.entity,";
192  $sql .= " t.ref,";
193  $sql .= " t.description,";
194  $sql .= " t.fk_country,";
195  $sql .= " t.fk_code_type_resource,";
196  $sql .= " t.note_public,";
197  $sql .= " t.note_private,";
198  $sql .= " t.tms,";
199  $sql .= " ty.label as type_label";
200  $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
201  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_type_resource as ty ON ty.code=t.fk_code_type_resource";
202  if ($id) {
203  $sql .= " WHERE t.rowid = ".((int) $id);
204  } else {
205  $sql .= " WHERE t.ref = '".$this->db->escape($ref)."'";
206  }
207 
208  dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
209  $resql = $this->db->query($sql);
210  if ($resql) {
211  if ($this->db->num_rows($resql)) {
212  $obj = $this->db->fetch_object($resql);
213 
214  $this->id = $obj->rowid;
215  $this->entity = $obj->entity;
216  $this->ref = $obj->ref;
217  $this->description = $obj->description;
218  $this->country_id = $obj->fk_country;
219  $this->fk_code_type_resource = $obj->fk_code_type_resource;
220  $this->note_public = $obj->note_public;
221  $this->note_private = $obj->note_private;
222  $this->type_label = $obj->type_label;
223 
224  // Retrieve all extrafield
225  // fetch optionals attributes and labels
226  $this->fetch_optionals();
227  }
228  $this->db->free($resql);
229 
230  return $this->id;
231  } else {
232  $this->error = "Error ".$this->db->lasterror();
233  dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
234  return -1;
235  }
236  }
237 
238 
246  public function update($user = null, $notrigger = 0)
247  {
248  global $conf, $langs, $hookmanager;
249  $error = 0;
250 
251  // Clean parameters
252  if (isset($this->ref)) {
253  $this->ref = trim($this->ref);
254  }
255  if (isset($this->fk_code_type_resource)) {
256  $this->fk_code_type_resource = trim($this->fk_code_type_resource);
257  }
258  if (isset($this->description)) {
259  $this->description = trim($this->description);
260  }
261  if (!is_numeric($this->country_id)) {
262  $this->country_id = 0;
263  }
264 
265  if (empty($this->oldcopy)) {
266  $org = new self($this->db);
267  $org->fetch($this->id);
268  $this->oldcopy = $org;
269  }
270 
271  // Update request
272  $sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element." SET";
273  $sql .= " ref=".(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").",";
274  $sql .= " description=".(isset($this->description) ? "'".$this->db->escape($this->description)."'" : "null").",";
275  $sql .= " fk_country=".($this->country_id > 0 ? $this->country_id : "null").",";
276  $sql .= " fk_code_type_resource=".(isset($this->fk_code_type_resource) ? "'".$this->db->escape($this->fk_code_type_resource)."'" : "null").",";
277  $sql .= " tms=".(dol_strlen($this->tms) != 0 ? "'".$this->db->idate($this->tms)."'" : 'null')."";
278  $sql .= " WHERE rowid=".((int) $this->id);
279 
280  $this->db->begin();
281 
282  dol_syslog(get_class($this)."::update", LOG_DEBUG);
283  $resql = $this->db->query($sql);
284  if (!$resql) {
285  $error++; $this->errors[] = "Error ".$this->db->lasterror();
286  }
287 
288  if (!$error) {
289  if (!$notrigger) {
290  // Call trigger
291  $result = $this->call_trigger('RESOURCE_MODIFY', $user);
292  if ($result < 0) {
293  $error++;
294  }
295  // End call triggers
296  }
297  }
298 
299  if (!$error && (is_object($this->oldcopy) && $this->oldcopy->ref !== $this->ref)) {
300  // We remove directory
301  if (!empty($conf->resource->dir_output)) {
302  $olddir = $conf->resource->dir_output."/".dol_sanitizeFileName($this->oldcopy->ref);
303  $newdir = $conf->resource->dir_output."/".dol_sanitizeFileName($this->ref);
304  if (file_exists($olddir)) {
305  $res = @rename($olddir, $newdir);
306  if (!$res) {
307  $langs->load("errors");
308  $this->error = $langs->trans('ErrorFailToRenameDir', $olddir, $newdir);
309  $error++;
310  }
311  }
312  }
313  }
314 
315  if (!$error) {
316  $action = 'update';
317 
318  // Actions on extra fields
319  if (!$error) {
320  $result = $this->insertExtraFields();
321  if ($result < 0) {
322  $error++;
323  }
324  }
325  }
326 
327  // Commit or rollback
328  if ($error) {
329  foreach ($this->errors as $errmsg) {
330  dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
331  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
332  }
333  $this->db->rollback();
334  return -1 * $error;
335  } else {
336  $this->db->commit();
337  return 1;
338  }
339  }
340 
341  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
348  public function fetch_element_resource($id)
349  {
350  // phpcs:enable
351  global $langs;
352  $sql = "SELECT";
353  $sql .= " t.rowid,";
354  $sql .= " t.resource_id,";
355  $sql .= " t.resource_type,";
356  $sql .= " t.element_id,";
357  $sql .= " t.element_type,";
358  $sql .= " t.busy,";
359  $sql .= " t.mandatory,";
360  $sql .= " t.fk_user_create,";
361  $sql .= " t.tms";
362  $sql .= " FROM ".MAIN_DB_PREFIX."element_resources as t";
363  $sql .= " WHERE t.rowid = ".((int) $id);
364 
365  dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
366  $resql = $this->db->query($sql);
367  if ($resql) {
368  if ($this->db->num_rows($resql)) {
369  $obj = $this->db->fetch_object($resql);
370 
371  $this->id = $obj->rowid;
372  $this->resource_id = $obj->resource_id;
373  $this->resource_type = $obj->resource_type;
374  $this->element_id = $obj->element_id;
375  $this->element_type = $obj->element_type;
376  $this->busy = $obj->busy;
377  $this->mandatory = $obj->mandatory;
378  $this->fk_user_create = $obj->fk_user_create;
379 
380  if ($obj->resource_id && $obj->resource_type) {
381  $this->objresource = fetchObjectByElement($obj->resource_id, $obj->resource_type);
382  }
383  if ($obj->element_id && $obj->element_type) {
384  $this->objelement = fetchObjectByElement($obj->element_id, $obj->element_type);
385  }
386  }
387  $this->db->free($resql);
388 
389  return $this->id;
390  } else {
391  $this->error = "Error ".$this->db->lasterror();
392  return -1;
393  }
394  }
395 
403  public function delete($rowid, $notrigger = 0)
404  {
405  global $user, $langs, $conf;
406  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
407 
408  $error = 0;
409 
410  $this->db->begin();
411 
412  $sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element;
413  $sql .= " WHERE rowid = ".((int) $rowid);
414 
415  dol_syslog(get_class($this), LOG_DEBUG);
416  if ($this->db->query($sql)) {
417  $sql = "DELETE FROM ".MAIN_DB_PREFIX."element_resources";
418  $sql .= " WHERE element_type='resource' AND resource_id = ".((int) $rowid);
419  dol_syslog(get_class($this)."::delete", LOG_DEBUG);
420  $resql = $this->db->query($sql);
421  if (!$resql) {
422  $this->error = $this->db->lasterror();
423  $error++;
424  }
425  } else {
426  $this->error = $this->db->lasterror();
427  $error++;
428  }
429 
430  // Removed extrafields
431  if (!$error) {
432  $result = $this->deleteExtraFields();
433  if ($result < 0) {
434  $error++;
435  dol_syslog(get_class($this)."::delete error -3 ".$this->error, LOG_ERR);
436  }
437  }
438 
439  if (!$notrigger) {
440  // Call trigger
441  $result = $this->call_trigger('RESOURCE_DELETE', $user);
442  if ($result < 0) {
443  $error++;
444  }
445  // End call triggers
446  }
447 
448  if (!$error) {
449  // We remove directory
450  $ref = dol_sanitizeFileName($this->ref);
451  if (!empty($conf->resource->dir_output)) {
452  $dir = $conf->resource->dir_output."/".dol_sanitizeFileName($this->ref);
453  if (file_exists($dir)) {
454  $res = @dol_delete_dir_recursive($dir);
455  if (!$res) {
456  $this->errors[] = 'ErrorFailToDeleteDir';
457  $error++;
458  }
459  }
460  }
461  }
462 
463  if (!$error) {
464  $this->db->commit();
465  return 1;
466  } else {
467  $this->db->rollback();
468  return -1;
469  }
470  }
471 
472  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
483  public function fetchAll($sortorder, $sortfield, $limit, $offset, $filter = '')
484  {
485  // phpcs:enable
486  global $conf;
487 
488  require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
489  $extrafields = new ExtraFields($this->db);
490 
491  $sql = "SELECT ";
492  $sql .= " t.rowid,";
493  $sql .= " t.entity,";
494  $sql .= " t.ref,";
495  $sql .= " t.description,";
496  $sql .= " t.fk_country,";
497  $sql .= " t.fk_code_type_resource,";
498  $sql .= " t.tms,";
499  // Add fields from extrafields
500  if (!empty($extrafields->attributes[$this->table_element]) && !empty($extrafields->attributes[$this->table_element]['label'])) {
501  foreach ($extrafields->attributes[$this->table_element]['label'] as $key => $val) {
502  $sql .= ($extrafields->attributes[$this->table_element]['type'][$key] != 'separate' ? "ef.".$key." as options_".$key.', ' : '');
503  }
504  }
505  $sql .= " ty.label as type_label";
506  $sql .= " FROM ".MAIN_DB_PREFIX.$this->table_element." as t";
507  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_type_resource as ty ON ty.code=t.fk_code_type_resource";
508  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX.$this->table_element."_extrafields as ef ON ef.fk_object=t.rowid";
509  $sql .= " WHERE t.entity IN (".getEntity('resource').")";
510  // Manage filter
511  if (!empty($filter)) {
512  foreach ($filter as $key => $value) {
513  if (strpos($key, 'date')) {
514  $sql .= " AND ".$key." = '".$this->db->idate($value)."'";
515  } elseif (strpos($key, 'ef.') !== false) {
516  $sql .= $value;
517  } else {
518  $sql .= " AND ".$key." LIKE '%".$this->db->escape($value)."%'";
519  }
520  }
521  }
522  $sql .= $this->db->order($sortfield, $sortorder);
523  $this->num_all = 0;
524  if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
525  $result = $this->db->query($sql);
526  $this->num_all = $this->db->num_rows($result);
527  }
528  if ($limit) {
529  $sql .= $this->db->plimit($limit, $offset);
530  }
531  dol_syslog(get_class($this)."::fetch_all", LOG_DEBUG);
532 
533  $this->lines = array();
534  $resql = $this->db->query($sql);
535  if ($resql) {
536  $num = $this->db->num_rows($resql);
537  if ($num) {
538  while ($obj = $this->db->fetch_object($resql)) {
539  $line = new Dolresource($this->db);
540  $line->id = $obj->rowid;
541  $line->ref = $obj->ref;
542  $line->description = $obj->description;
543  $line->country_id = $obj->fk_country;
544  $line->fk_code_type_resource = $obj->fk_code_type_resource;
545  $line->type_label = $obj->type_label;
546 
547  // fetch optionals attributes and labels
548 
549  $line->fetch_optionals();
550 
551  $this->lines[] = $line;
552  }
553  $this->db->free($resql);
554  }
555  return $num;
556  } else {
557  $this->error = $this->db->lasterror();
558  return -1;
559  }
560  }
561 
562  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
570  public function update_element_resource($user = null, $notrigger = 0)
571  {
572  // phpcs:enable
573  global $conf, $langs;
574  $error = 0;
575 
576  // Clean parameters
577  if (isset($this->resource_id)) {
578  $this->resource_id = trim($this->resource_id);
579  }
580  if (isset($this->resource_type)) {
581  $this->resource_type = trim($this->resource_type);
582  }
583  if (isset($this->element_id)) {
584  $this->element_id = trim($this->element_id);
585  }
586  if (isset($this->element_type)) {
587  $this->element_type = trim($this->element_type);
588  }
589  if (isset($this->busy)) {
590  $this->busy = trim($this->busy);
591  }
592  if (isset($this->mandatory)) {
593  $this->mandatory = trim($this->mandatory);
594  }
595 
596  // Update request
597  $sql = "UPDATE ".MAIN_DB_PREFIX."element_resources SET";
598  $sql .= " resource_id=".(isset($this->resource_id) ? "'".$this->db->escape($this->resource_id)."'" : "null").",";
599  $sql .= " resource_type=".(isset($this->resource_type) ? "'".$this->db->escape($this->resource_type)."'" : "null").",";
600  $sql .= " element_id=".(isset($this->element_id) ? $this->element_id : "null").",";
601  $sql .= " element_type=".(isset($this->element_type) ? "'".$this->db->escape($this->element_type)."'" : "null").",";
602  $sql .= " busy=".(isset($this->busy) ? $this->busy : "null").",";
603  $sql .= " mandatory=".(isset($this->mandatory) ? $this->mandatory : "null").",";
604  $sql .= " tms=".(dol_strlen($this->tms) != 0 ? "'".$this->db->idate($this->tms)."'" : 'null')."";
605 
606  $sql .= " WHERE rowid=".((int) $this->id);
607 
608  $this->db->begin();
609 
610  dol_syslog(get_class($this)."::update", LOG_DEBUG);
611  $resql = $this->db->query($sql);
612  if (!$resql) {
613  $error++; $this->errors[] = "Error ".$this->db->lasterror();
614  }
615 
616  if (!$error) {
617  if (!$notrigger) {
618  // Call trigger
619  $result = $this->call_trigger('RESOURCE_MODIFY', $user);
620  if ($result < 0) {
621  $error++;
622  }
623  // End call triggers
624  }
625  }
626 
627  // Commit or rollback
628  if ($error) {
629  foreach ($this->errors as $errmsg) {
630  dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
631  $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
632  }
633  $this->db->rollback();
634  return -1 * $error;
635  } else {
636  $this->db->commit();
637  return 1;
638  }
639  }
640 
641 
650  public function getElementResources($element, $element_id, $resource_type = '')
651  {
652  $resources = array();
653 
654  // Links beetween objects are stored in this table
655  $sql = 'SELECT rowid, resource_id, resource_type, busy, mandatory';
656  $sql .= ' FROM '.MAIN_DB_PREFIX.'element_resources';
657  $sql .= " WHERE element_id=".((int) $element_id)." AND element_type='".$this->db->escape($element)."'";
658  if ($resource_type) {
659  $sql .= " AND resource_type LIKE '%".$this->db->escape($resource_type)."%'";
660  }
661  $sql .= ' ORDER BY resource_type';
662 
663  dol_syslog(get_class($this)."::getElementResources", LOG_DEBUG);
664 
665  $resources = array();
666  $resql = $this->db->query($sql);
667  if ($resql) {
668  $num = $this->db->num_rows($resql);
669  $i = 0;
670  while ($i < $num) {
671  $obj = $this->db->fetch_object($resql);
672 
673  $resources[$i] = array(
674  'rowid' => $obj->rowid,
675  'resource_id' => $obj->resource_id,
676  'resource_type'=>$obj->resource_type,
677  'busy'=>$obj->busy,
678  'mandatory'=>$obj->mandatory
679  );
680  $i++;
681  }
682  }
683 
684  return $resources;
685  }
686 
694  public function fetchElementResources($element, $element_id)
695  {
696  $resources = $this->getElementResources($element, $element_id);
697  $i = 0;
698  foreach ($resources as $nb => $resource) {
699  $this->lines[$i] = fetchObjectByElement($resource['resource_id'], $resource['resource_type']);
700  $i++;
701  }
702  return $i;
703  }
704 
705 
706  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
713  {
714  // phpcs:enable
715  global $langs;
716 
717  if (is_array($this->cache_code_type_resource) && count($this->cache_code_type_resource)) {
718  return 0; // Cache deja charge
719  }
720 
721  $sql = "SELECT rowid, code, label, active";
722  $sql .= " FROM ".MAIN_DB_PREFIX."c_type_resource";
723  $sql .= " WHERE active > 0";
724  $sql .= " ORDER BY rowid";
725  dol_syslog(get_class($this)."::load_cache_code_type_resource", LOG_DEBUG);
726  $resql = $this->db->query($sql);
727  if ($resql) {
728  $num = $this->db->num_rows($resql);
729  $i = 0;
730  while ($i < $num) {
731  $obj = $this->db->fetch_object($resql);
732  // Si traduction existe, on l'utilise, sinon on prend le libelle par defaut
733  $label = ($langs->trans("ResourceTypeShort".$obj->code) != ("ResourceTypeShort".$obj->code) ? $langs->trans("ResourceTypeShort".$obj->code) : ($obj->label != '-' ? $obj->label : ''));
734  $this->cache_code_type_resource[$obj->rowid]['code'] = $obj->code;
735  $this->cache_code_type_resource[$obj->rowid]['label'] = $label;
736  $this->cache_code_type_resource[$obj->rowid]['active'] = $obj->active;
737  $i++;
738  }
739  return $num;
740  } else {
741  dol_print_error($this->db);
742  return -1;
743  }
744  }
745 
757  public function getNomUrl($withpicto = 0, $option = '', $get_params = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
758  {
759  global $conf, $langs, $hookmanager;
760 
761  $result = '';
762  $label = img_picto('', $this->picto).' <u>'.$langs->trans("Resource").'</u>';
763  $label .= '<br>';
764  $label .= '<b>'.$langs->trans('Ref').':</b> '.$this->ref;
765  /*if (isset($this->status)) {
766  $label.= '<br><b>' . $langs->trans("Status").":</b> ".$this->getLibStatut(5);
767  }*/
768  if (isset($this->type_label)) {
769  $label .= '<br><b>'.$langs->trans("ResourceType").":</b> ".$this->type_label;
770  }
771 
772  $url = DOL_URL_ROOT.'/resource/card.php?id='.$this->id;
773 
774  if ($option != 'nolink') {
775  // Add param to save lastsearch_values or not
776  $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
777  if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
778  $add_save_lastsearch_values = 1;
779  }
780  if ($add_save_lastsearch_values) {
781  $url .= '&save_lastsearch_values=1';
782  }
783  }
784 
785  $linkclose = '';
786  if (empty($notooltip)) {
787  if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) {
788  $label = $langs->trans("ShowMyObject");
789  $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
790  }
791  $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
792  $linkclose .= ' class="classfortooltip'.($morecss ? ' '.$morecss : '').'"';
793  } else {
794  $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
795  }
796 
797  $linkstart = '<a href="'.$url.$get_params.'"';
798  $linkstart .= $linkclose.'>';
799  $linkend = '</a>';
800  /*$linkstart = '<a href="'.DOL_URL_ROOT.'/resource/card.php?id='.$this->id.$get_params.'" title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip">';
801  $linkend = '</a>';*/
802 
803  $result .= $linkstart;
804  if ($withpicto) {
805  $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);
806  }
807  if ($withpicto != 2) {
808  $result .= $this->ref;
809  }
810  $result .= $linkend;
811 
812  global $action;
813  $hookmanager->initHooks(array($this->element . 'dao'));
814  $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
815  $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
816  if ($reshook > 0) {
817  $result = $hookmanager->resPrint;
818  } else {
819  $result .= $hookmanager->resPrint;
820  }
821  return $result;
822  }
823 
824 
831  public function getLibStatut($mode = 0)
832  {
833  return $this->LibStatut($this->status, $mode);
834  }
835 
836  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
844  public static function LibStatut($status, $mode = 0)
845  {
846  // phpcs:enable
847  global $langs;
848 
849  return '';
850  }
851 
852  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
858  public function load_state_board()
859  {
860  // phpcs:enable
861  global $conf;
862 
863  $this->nb = array();
864 
865  $sql = "SELECT count(r.rowid) as nb";
866  $sql .= " FROM ".MAIN_DB_PREFIX."resource as r";
867  $sql .= " WHERE r.entity IN (".getEntity('resource').")";
868 
869  $resql = $this->db->query($sql);
870  if ($resql) {
871  while ($obj = $this->db->fetch_object($resql)) {
872  $this->nb["dolresource"] = $obj->nb;
873  }
874  $this->db->free($resql);
875  return 1;
876  } else {
877  dol_print_error($this->db);
878  $this->error = $this->db->error();
879  return -1;
880  }
881  }
882 }
db
$conf db
API class for accounts.
Definition: inc.php:41
Dolresource\update_element_resource
update_element_resource($user=null, $notrigger=0)
Update element resource into database.
Definition: dolresource.class.php:570
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
description
print *****$script_file(".$version.") pid cd cd cd description as description
Definition: email_expire_services_to_customers.php:83
dol_delete_dir_recursive
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
Definition: files.lib.php:1383
Dolresource\fetchAll
fetchAll($sortorder, $sortfield, $limit, $offset, $filter='')
Load resource objects into $this->lines.
Definition: dolresource.class.php:483
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
ref
$object ref
Definition: info.php:77
CommonObject
Parent class of all other business classes (invoices, contracts, proposals, orders,...
Definition: commonobject.class.php:44
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:3880
Dolresource\LibStatut
static LibStatut($status, $mode=0)
Return the status.
Definition: dolresource.class.php:844
Dolresource\create
create($user, $notrigger=0)
Create object into database.
Definition: dolresource.class.php:86
Dolresource
DAO Resource object.
Definition: dolresource.class.php:30
CommonObject\insertExtraFields
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
Definition: commonobject.class.php:6156
Dolresource\update
update($user=null, $notrigger=0)
Update object into database.
Definition: dolresource.class.php:246
Dolresource\fetchElementResources
fetchElementResources($element, $element_id)
Return an int number of resources linked to the element.
Definition: dolresource.class.php:694
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1603
Dolresource\__construct
__construct($db)
Constructor.
Definition: dolresource.class.php:74
CommonObject\fetch_optionals
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
Definition: commonobject.class.php:6007
CommonObject\deleteExtraFields
deleteExtraFields()
Delete all extra fields values for the current object.
Definition: commonobject.class.php:6116
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Dolresource\getNomUrl
getNomUrl($withpicto=0, $option='', $get_params='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return clicable link of object (with eventually picto)
Definition: dolresource.class.php:757
Dolresource\fetch
fetch($id, $ref='')
Load object in memory from database.
Definition: dolresource.class.php:186
img_object
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
Definition: functions.lib.php:4211
Dolresource\load_state_board
load_state_board()
Charge indicateurs this->nb de tableau de bord.
Definition: dolresource.class.php:858
Dolresource\fetch_element_resource
fetch_element_resource($id)
Load object in memory from database.
Definition: dolresource.class.php:348
$resql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice') && $user->rights->supplier_invoice->lire)) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
Dolresource\load_cache_code_type_resource
load_cache_code_type_resource()
Load in cache resource type code (setup in dictionary)
Definition: dolresource.class.php:712
CommonObject\call_trigger
call_trigger($triggerName, $user)
Call trigger based on this instance.
Definition: commonobject.class.php:5791
Dolresource\getElementResources
getElementResources($element, $element_id, $resource_type='')
Return an array with resources linked to the element.
Definition: dolresource.class.php:650
Dolresource\getLibStatut
getLibStatut($mode=0)
Retourne le libelle du status d'un user (actif, inactif)
Definition: dolresource.class.php:831
fetchObjectByElement
fetchObjectByElement($element_id, $element_type, $element_ref='')
Fetch an object from its id and element_type Inclusion of classes is automatic.
Definition: functions.lib.php:10840