dolibarr 19.0.4
loan.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2014-2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 * Copyright (C) 2015-2023 Frédéric France <frederic.france@netlogic.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
24require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
25
26
30class Loan extends CommonObject
31{
35 public $element = 'loan';
36
37 public $table = 'loan';
38
42 public $table_element = 'loan';
43
47 public $picto = 'money-bill-alt';
48
52 public $rowid;
53
54 public $datestart;
55 public $dateend;
56
60 public $label;
61
62 public $capital;
63 public $nbterm;
64 public $rate;
65 public $paid;
66 public $account_capital;
67 public $account_insurance;
68 public $account_interest;
69 public $accountancy_account_capital;
70 public $accountancy_account_insurance;
71 public $accountancy_account_interest;
72
76 public $date_creation;
77
81 public $date_modification;
82
86 public $date_validation;
87
88 public $insurance_amount;
89
93 public $fk_bank;
94
98 public $fk_user_creat;
99
103 public $fk_user_modif;
104
108 public $fk_project;
109
113 public $totalpaid;
114
115 const STATUS_UNPAID = 0;
116 const STATUS_PAID = 1;
117 const STATUS_STARTED = 2;
118
119
125 public function __construct($db)
126 {
127 $this->db = $db;
128 }
129
136 public function fetch($id)
137 {
138 $sql = "SELECT l.rowid, l.label, l.capital, l.datestart, l.dateend, l.nbterm, l.rate, l.note_private, l.note_public, l.insurance_amount,";
139 $sql .= " l.paid, l.fk_bank, l.accountancy_account_capital, l.accountancy_account_insurance, l.accountancy_account_interest, l.fk_projet as fk_project";
140 $sql .= " FROM ".MAIN_DB_PREFIX."loan as l";
141 $sql .= " WHERE l.rowid = ".((int) $id);
142
143 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
144 $resql = $this->db->query($sql);
145 if ($resql) {
146 if ($this->db->num_rows($resql)) {
147 $obj = $this->db->fetch_object($resql);
148
149 $this->id = $obj->rowid;
150 $this->ref = $obj->rowid;
151 $this->datestart = $this->db->jdate($obj->datestart);
152 $this->dateend = $this->db->jdate($obj->dateend);
153 $this->label = $obj->label;
154 $this->capital = $obj->capital;
155 $this->nbterm = $obj->nbterm;
156 $this->rate = $obj->rate;
157 $this->note_private = $obj->note_private;
158 $this->note_public = $obj->note_public;
159 $this->insurance_amount = $obj->insurance_amount;
160 $this->paid = $obj->paid;
161 $this->fk_bank = $obj->fk_bank;
162
163 $this->account_capital = $obj->accountancy_account_capital;
164 $this->account_insurance = $obj->accountancy_account_insurance;
165 $this->account_interest = $obj->accountancy_account_interest;
166 $this->fk_project = $obj->fk_project;
167
168 $this->db->free($resql);
169 return 1;
170 } else {
171 $this->db->free($resql);
172 return 0;
173 }
174 } else {
175 $this->error = $this->db->lasterror();
176 return -1;
177 }
178 }
179
180
187 public function create($user)
188 {
189 global $conf, $langs;
190
191 $error = 0;
192
193 $now = dol_now();
194
195 // clean parameters
196 $newcapital = price2num($this->capital, 'MT');
197 if (empty($this->insurance_amount)) {
198 $this->insurance_amount = 0;
199 }
200 $newinsuranceamount = price2num($this->insurance_amount, 'MT');
201 if (isset($this->note_private)) {
202 $this->note_private = trim($this->note_private);
203 }
204 if (isset($this->note_public)) {
205 $this->note_public = trim($this->note_public);
206 }
207 if (isset($this->account_capital)) {
208 $this->account_capital = trim($this->account_capital);
209 }
210 if (isset($this->account_insurance)) {
211 $this->account_insurance = trim($this->account_insurance);
212 }
213 if (isset($this->account_interest)) {
214 $this->account_interest = trim($this->account_interest);
215 }
216 if (isset($this->fk_bank)) {
217 $this->fk_bank = (int) $this->fk_bank;
218 }
219 if (isset($this->fk_user_creat)) {
220 $this->fk_user_creat = (int) $this->fk_user_creat;
221 }
222 if (isset($this->fk_user_modif)) {
223 $this->fk_user_modif = (int) $this->fk_user_modif;
224 }
225 if (isset($this->fk_project)) {
226 $this->fk_project = (int) $this->fk_project;
227 }
228
229 // Check parameters
230 if (!($newcapital > 0) || empty($this->datestart) || empty($this->dateend)) {
231 $this->error = "ErrorBadParameter";
232 return -2;
233 }
234 if (isModEnabled('accounting') && empty($this->account_capital)) {
235 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("LoanAccountancyCapitalCode"));
236 return -2;
237 }
238 if (isModEnabled('accounting') && empty($this->account_insurance)) {
239 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("LoanAccountancyInsuranceCode"));
240 return -2;
241 }
242 if (isModEnabled('accounting') && empty($this->account_interest)) {
243 $this->error = $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("LoanAccountancyInterestCode"));
244 return -2;
245 }
246
247 $this->db->begin();
248
249 $sql = "INSERT INTO ".MAIN_DB_PREFIX."loan (label, fk_bank, capital, datestart, dateend, nbterm, rate, note_private, note_public,";
250 $sql .= " accountancy_account_capital, accountancy_account_insurance, accountancy_account_interest, entity,";
251 $sql .= " datec, fk_projet, fk_user_author, insurance_amount)";
252 $sql .= " VALUES ('".$this->db->escape($this->label)."',";
253 $sql .= " '".$this->db->escape($this->fk_bank)."',";
254 $sql .= " '".price2num($newcapital)."',";
255 $sql .= " '".$this->db->idate($this->datestart)."',";
256 $sql .= " '".$this->db->idate($this->dateend)."',";
257 $sql .= " '".$this->db->escape($this->nbterm)."',";
258 $sql .= " '".$this->db->escape($this->rate)."',";
259 $sql .= " '".$this->db->escape($this->note_private)."',";
260 $sql .= " '".$this->db->escape($this->note_public)."',";
261 $sql .= " '".$this->db->escape($this->account_capital)."',";
262 $sql .= " '".$this->db->escape($this->account_insurance)."',";
263 $sql .= " '".$this->db->escape($this->account_interest)."',";
264 $sql .= " ".$conf->entity.",";
265 $sql .= " '".$this->db->idate($now)."',";
266 $sql .= " ".(empty($this->fk_project) ? 'NULL' : $this->fk_project).",";
267 $sql .= " ".$user->id.",";
268 $sql .= " '".price2num($newinsuranceamount)."'";
269 $sql .= ")";
270
271 dol_syslog(get_class($this)."::create", LOG_DEBUG);
272 $resql = $this->db->query($sql);
273 if ($resql) {
274 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."loan");
275
276 //dol_syslog("Loans::create this->id=".$this->id);
277 $this->db->commit();
278 return $this->id;
279 } else {
280 $this->error = $this->db->error();
281 $this->db->rollback();
282 return -1;
283 }
284 }
285
286
293 public function delete($user)
294 {
295 $error = 0;
296
297 $this->db->begin();
298
299 // Get bank transaction lines for this loan
300 include_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
301 $account = new Account($this->db);
302 $lines_url = $account->get_url('', $this->id, 'loan');
303
304 // Delete bank urls
305 foreach ($lines_url as $line_url) {
306 if (!$error) {
307 $accountline = new AccountLine($this->db);
308 $accountline->fetch($line_url['fk_bank']);
309 $result = $accountline->delete_urls($user);
310 if ($result < 0) {
311 $this->errors = array_merge($this->errors, [$accountline->error], $accountline->errors);
312 $error++;
313 }
314 }
315 }
316
317 // Delete payments
318 if (!$error) {
319 $sql = "DELETE FROM ".MAIN_DB_PREFIX."payment_loan where fk_loan=".((int) $this->id);
320 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
321 $resql = $this->db->query($sql);
322 if (!$resql) {
323 $error++;
324 $this->error = $this->db->lasterror();
325 }
326 }
327
328 if (!$error) {
329 $sql = "DELETE FROM ".MAIN_DB_PREFIX."loan where rowid=".((int) $this->id);
330 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
331 $resql = $this->db->query($sql);
332 if (!$resql) {
333 $error++;
334 $this->error = $this->db->lasterror();
335 }
336 }
337
338 if (!$error) {
339 $this->db->commit();
340 return 1;
341 } else {
342 $this->db->rollback();
343 return -1;
344 }
345 }
346
347
354 public function update($user)
355 {
356 $this->db->begin();
357
358 if (!is_numeric($this->nbterm)) {
359 $this->error = 'BadValueForParameterForNbTerm';
360 return -1;
361 }
362
363 $sql = "UPDATE ".MAIN_DB_PREFIX."loan";
364 $sql .= " SET label='".$this->db->escape($this->label)."',";
365 $sql .= " capital='".price2num($this->db->escape($this->capital))."',";
366 $sql .= " datestart='".$this->db->idate($this->datestart)."',";
367 $sql .= " dateend='".$this->db->idate($this->dateend)."',";
368 $sql .= " nbterm=".((float) $this->nbterm).",";
369 $sql .= " rate=".((float) $this->rate).",";
370 $sql .= " accountancy_account_capital = '".$this->db->escape($this->account_capital)."',";
371 $sql .= " accountancy_account_insurance = '".$this->db->escape($this->account_insurance)."',";
372 $sql .= " accountancy_account_interest = '".$this->db->escape($this->account_interest)."',";
373 $sql .= " fk_projet=".(empty($this->fk_project) ? 'NULL' : ((int) $this->fk_project)).",";
374 $sql .= " fk_user_modif = ".$user->id.",";
375 $sql .= " insurance_amount = '".price2num($this->db->escape($this->insurance_amount))."'";
376 $sql .= " WHERE rowid=".((int) $this->id);
377
378 dol_syslog(get_class($this)."::update", LOG_DEBUG);
379 $resql = $this->db->query($sql);
380 if ($resql) {
381 $this->db->commit();
382 return 1;
383 } else {
384 $this->error = $this->db->error();
385 $this->db->rollback();
386 return -1;
387 }
388 }
389
396 public function setPaid($user)
397 {
398 $sql = "UPDATE ".MAIN_DB_PREFIX."loan SET";
399 $sql .= " paid = ".$this::STATUS_PAID;
400 $sql .= " WHERE rowid = ".((int) $this->id);
401
402 $return = $this->db->query($sql);
403
404 if ($return) {
405 $this->paid = $this::STATUS_PAID;
406 return 1;
407 } else {
408 $this->error = $this->db->lasterror();
409 return -1;
410 }
411 }
412
413 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
422 public function set_started($user)
423 {
424 // phpcs:enable
425 dol_syslog(get_class($this)."::set_started is deprecated, use setStarted instead", LOG_NOTICE);
426 return $this->setStarted($user);
427 }
428
435 public function setStarted($user)
436 {
437 $sql = "UPDATE ".MAIN_DB_PREFIX."loan SET";
438 $sql .= " paid = ".$this::STATUS_STARTED;
439 $sql .= " WHERE rowid = ".((int) $this->id);
440
441 $return = $this->db->query($sql);
442
443 if ($return) {
444 $this->paid = $this::STATUS_STARTED;
445 return 1;
446 } else {
447 $this->error = $this->db->lasterror();
448 return -1;
449 }
450 }
451
458 public function setUnpaid($user)
459 {
460 $sql = "UPDATE ".MAIN_DB_PREFIX."loan SET";
461 $sql .= " paid = ".$this::STATUS_UNPAID;
462 $sql .= " WHERE rowid = ".((int) $this->id);
463
464 $return = $this->db->query($sql);
465
466 if ($return) {
467 $this->paid = $this::STATUS_UNPAID;
468 return 1;
469 } else {
470 $this->error = $this->db->lasterror();
471 return -1;
472 }
473 }
474
482 public function getLibStatut($mode = 0, $alreadypaid = -1)
483 {
484 return $this->LibStatut($this->paid, $mode, $alreadypaid);
485 }
486
487 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
496 public function LibStatut($status, $mode = 0, $alreadypaid = -1)
497 {
498 // phpcs:enable
499 global $langs;
500
501 // Load translation files required by the page
502 $langs->loadLangs(array("customers", "bills"));
503
504 unset($this->labelStatus); // Force to reset the array of status label, because label can change depending on parameters
505 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
506 global $langs;
507 $this->labelStatus[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv('Unpaid');
508 $this->labelStatus[self::STATUS_PAID] = $langs->transnoentitiesnoconv('Paid');
509 $this->labelStatus[self::STATUS_STARTED] = $langs->transnoentitiesnoconv("BillStatusStarted");
510 if ($status == 0 && $alreadypaid > 0) {
511 $this->labelStatus[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv("BillStatusStarted");
512 }
513 $this->labelStatusShort[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv('Unpaid');
514 $this->labelStatusShort[self::STATUS_PAID] = $langs->transnoentitiesnoconv('Paid');
515 $this->labelStatusShort[self::STATUS_STARTED] = $langs->transnoentitiesnoconv("BillStatusStarted");
516 if ($status == 0 && $alreadypaid > 0) {
517 $this->labelStatusShort[self::STATUS_UNPAID] = $langs->transnoentitiesnoconv("BillStatusStarted");
518 }
519 }
520
521 $statusType = 'status1';
522 if (($status == 0 && $alreadypaid > 0) || $status == self::STATUS_STARTED) {
523 $statusType = 'status3';
524 }
525 if ($status == 1) {
526 $statusType = 'status6';
527 }
528
529 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
530 }
531
532
544 public function getNomUrl($withpicto = 0, $maxlen = 0, $option = '', $notooltip = 0, $morecss = '', $save_lastsearch_value = -1)
545 {
546 global $conf, $langs, $hookmanager;
547
548 $result = '';
549
550 $label = '<u>'.$langs->trans("ShowLoan").'</u>';
551 if (!empty($this->ref)) {
552 $label .= '<br><strong>'.$langs->trans('Ref').':</strong> '.$this->ref;
553 }
554 if (!empty($this->label)) {
555 $label .= '<br><strong>'.$langs->trans('Label').':</strong> '.$this->label;
556 }
557
558 $url = DOL_URL_ROOT.'/loan/card.php?id='.$this->id;
559
560 if ($option != 'nolink') {
561 // Add param to save lastsearch_values or not
562 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
563 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
564 $add_save_lastsearch_values = 1;
565 }
566 if ($add_save_lastsearch_values) {
567 $url .= '&save_lastsearch_values=1';
568 }
569 }
570
571 $linkclose = '';
572 if (empty($notooltip)) {
573 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
574 $label = $langs->trans("ShowMyObject");
575 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
576 }
577 $linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
578 $linkclose .= ' class="classfortooltip'.($morecss ? ' '.$morecss : '').'"';
579 } else {
580 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
581 }
582
583 $linkstart = '<a href="'.$url.'"';
584 $linkstart .= $linkclose.'>';
585 $linkend = '</a>';
586
587 $result .= $linkstart;
588 if ($withpicto) {
589 $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);
590 }
591 if ($withpicto != 2) {
592 $result .= ($maxlen ? dol_trunc($this->ref, $maxlen) : $this->ref);
593 }
594 $result .= $linkend;
595
596 global $action;
597 $hookmanager->initHooks(array($this->element . 'dao'));
598 $parameters = array('id'=>$this->id, 'getnomurl' => &$result);
599 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
600 if ($reshook > 0) {
601 $result = $hookmanager->resPrint;
602 } else {
603 $result .= $hookmanager->resPrint;
604 }
605 return $result;
606 }
607
615 public function initAsSpecimen()
616 {
617 global $user, $langs, $conf;
618
619 $now = dol_now();
620
621 // Initialise parameters
622 $this->id = 0;
623 $this->fk_bank = 1;
624 $this->label = 'SPECIMEN';
625 $this->specimen = 1;
626 $this->account_capital = 16;
627 $this->account_insurance = 616;
628 $this->account_interest = 518;
629 $this->datestart = $now;
630 $this->dateend = $now + (3600 * 24 * 365);
631 $this->note_public = 'SPECIMEN';
632 $this->capital = 20000;
633 $this->nbterm = 48;
634 $this->rate = 4.3;
635 }
636
642 public function getSumPayment()
643 {
644 $table = 'payment_loan';
645 $field = 'fk_loan';
646
647 $sql = 'SELECT sum(amount_capital) as amount';
648 $sql .= ' FROM '.MAIN_DB_PREFIX.$table;
649 $sql .= " WHERE ".$field." = ".((int) $this->id);
650
651 dol_syslog(get_class($this)."::getSumPayment", LOG_DEBUG);
652 $resql = $this->db->query($sql);
653 if ($resql) {
654 $amount = 0;
655
656 $obj = $this->db->fetch_object($resql);
657 if ($obj) {
658 $amount = $obj->amount ? $obj->amount : 0;
659 }
660
661 $this->db->free($resql);
662 return $amount;
663 } else {
664 $this->error = $this->db->lasterror();
665 return -1;
666 }
667 }
668
675 public function info($id)
676 {
677 $sql = 'SELECT l.rowid, l.datec, l.fk_user_author, l.fk_user_modif,';
678 $sql .= ' l.tms as datem';
679 $sql .= ' WHERE l.rowid = '.((int) $id);
680
681 dol_syslog(get_class($this).'::info', LOG_DEBUG);
682 $result = $this->db->query($sql);
683
684 if ($result) {
685 if ($this->db->num_rows($result)) {
686 $obj = $this->db->fetch_object($result);
687
688 $this->id = $obj->rowid;
689
690 $this->user_creation_id = $obj->fk_user_author;
691 $this->user_modification_id = $obj->fk_user_modif;
692 $this->date_creation = $this->db->jdate($obj->datec);
693 $this->date_modification = empty($obj->datem) ? '' : $this->db->jdate($obj->datem);
694
695 $this->db->free($result);
696 return 1;
697 } else {
698 $this->db->free($result);
699 return 0;
700 }
701 } else {
702 $this->error = $this->db->lasterror();
703 return -1;
704 }
705 }
706
714 public function getKanbanView($option = '', $arraydata = null)
715 {
716 global $langs;
717
718 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
719
720 $return = '<div class="box-flex-item box-flex-grow-zero">';
721 $return .= '<div class="info-box info-box-sm">';
722 $return .= '<span class="info-box-icon bg-infobox-action">';
723 $return .= img_picto('', $this->picto);
724 $return .= '</span>';
725 $return .= '<div class="info-box-content">';
726 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl(1) : $this->ref).'</span>';
727 if ($selected >= 0) {
728 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
729 }
730 if (property_exists($this, 'capital')) {
731 $return .= ' | <span class="opacitymedium">'.$langs->trans("Amount").'</span> : <span class="info-box-label amount">'.price($this->capital).'</span>';
732 }
733 if (property_exists($this, 'datestart')) {
734 $return .= '<br><span class="opacitymedium">'.$langs->trans("DateStart").'</span> : <span class="info-box-label">'.dol_print_date($this->db->jdate($this->datestart), 'day').'</span>';
735 }
736 if (property_exists($this, 'dateend')) {
737 $return .= '<br><span class="opacitymedium">'.$langs->trans("DateEnd").'</span> : <span class="info-box-label">'.dol_print_date($this->db->jdate($this->dateend), 'day').'</span>';
738 }
739
740 if (method_exists($this, 'LibStatut')) {
741 $return .= '<br><div class="info-box-status margintoponly">'.$this->getLibStatut(3, $this->alreadypaid).'</div>';
742 }
743 $return .= '</div>';
744 $return .= '</div>';
745 $return .= '</div>';
746 return $return;
747 }
748}
$object ref
Definition info.php:79
Class to manage bank accounts.
Class to manage bank transaction lines.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
Loan.
fetch($id)
Load object in memory from database.
setUnpaid($user)
Tag loan as payment as unpaid.
initAsSpecimen()
Initialise an instance with random values.
setPaid($user)
Tag loan as paid completely.
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
setStarted($user)
Tag loan as payment started.
info($id)
Information on record.
LibStatut($status, $mode=0, $alreadypaid=-1)
Return label for given status.
__construct($db)
Constructor.
getNomUrl($withpicto=0, $maxlen=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return clicable name (with eventually the picto)
update($user)
Update loan.
getSumPayment()
Return amount of payments already done.
create($user)
Create a loan into database.
set_started($user)
Tag loan as payment started.
getLibStatut($mode=0, $alreadypaid=-1)
Return label of loan status (unpaid, paid)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
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_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
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.