dolibarr  19.0.0-dev
projectstats.class.php
1 <?php
2 /* Lead
3  * Copyright (C) 2014-2015 Florian HENRY <florian.henry@open-concept.pro>
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 include_once DOL_DOCUMENT_ROOT.'/core/class/stats.class.php';
19 include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
20 
21 
25 class ProjectStats extends Stats
26 {
27  private $project;
28  public $userid;
29  public $socid;
30  public $year;
31  public $yearmonth;
32  public $status;
33  public $opp_status;
34 
35  //SQL stat
36  public $field;
37  public $from;
38  public $where;
39 
40 
46  public function __construct($db)
47  {
48  global $conf, $user;
49 
50  $this->db = $db;
51 
52  require_once 'project.class.php';
53  $this->project = new Project($this->db);
54 
55  $this->from = MAIN_DB_PREFIX.$this->project->table_element;
56  $this->field = 'opp_amount';
57  $this->where = " entity = ".$conf->entity;
58  if ($this->socid > 0) {
59  $this->where .= " AND fk_soc = ".((int) $this->socid);
60  }
61  if (is_array($this->userid) && count($this->userid) > 0) {
62  $this->where .= ' AND fk_user IN ('.$this->db->sanitize(join(',', $this->userid)).')';
63  } elseif ($this->userid > 0) {
64  $this->where .= " AND fk_user = ".((int) $this->userid);
65  }
66  }
67 
68 
77  public function getAllProjectByStatus($limit = 5)
78  {
79  global $conf, $user, $langs;
80 
81  $datay = array();
82 
83  $sql = "SELECT";
84  $sql .= " SUM(t.opp_amount), t.fk_opp_status, cls.code, cls.label";
85  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t";
86  // No check is done on company permission because readability is managed by public status of project and assignement.
87  //if (! $user->rights->societe->client->voir && ! $user->socid)
88  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
89  $sql .= ", ".MAIN_DB_PREFIX."c_lead_status as cls";
90  $sql .= $this->buildWhere();
91  // For external user, no check is done on company permission because readability is managed by public status of project and assignement.
92  //if ($socid > 0) $sql.= " AND t.fk_soc = ".((int) $socid);
93  // No check is done on company permission because readability is managed by public status of project and assignement.
94  //if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id).") OR (s.rowid IS NULL))";
95  $sql .= " AND t.fk_opp_status = cls.rowid";
96  $sql .= " AND t.fk_statut <> 0"; // We want historic also, so all projects not draft
97  $sql .= " GROUP BY t.fk_opp_status, cls.code, cls.label";
98 
99  $result = array();
100 
101  dol_syslog(get_class($this).'::'.__METHOD__, LOG_DEBUG);
102  $resql = $this->db->query($sql);
103  if ($resql) {
104  $num = $this->db->num_rows($resql);
105  $i = 0;
106  $other = 0;
107  while ($i < $num) {
108  $row = $this->db->fetch_row($resql);
109  if ($i < $limit || $num == $limit) {
110  $label = (($langs->trans("OppStatus".$row[2]) != "OppStatus".$row[2]) ? $langs->trans("OppStatus".$row[2]) : $row[2]);
111  $result[$i] = array(
112  $label.' ('.price(price2num($row[0], 'MT'), 1, $langs, 1, -1, -1, $conf->currency).')',
113  $row[0]
114  );
115  } else {
116  $other += $row[1];
117  }
118  $i++;
119  }
120  if ($num > $limit) {
121  $result[$i] = array(
122  $langs->transnoentitiesnoconv("Other"),
123  $other
124  );
125  }
126  $this->db->free($resql);
127  } else {
128  $this->error = "Error ".$this->db->lasterror();
129  dol_syslog(get_class($this).'::'.__METHOD__.' '.$this->error, LOG_ERR);
130  return -1;
131  }
132 
133  return $result;
134  }
135 
141  public function getAllByYear()
142  {
143  global $conf, $user, $langs;
144 
145  $datay = array();
146 
147  $wonlostfilter = 0; // No filter on status WON/LOST
148 
149  $sql = "SELECT date_format(t.datec,'%Y') as year, COUNT(t.rowid) as nb, SUM(t.opp_amount) as total, AVG(t.opp_amount) as avg,";
150  $sql .= " SUM(t.opp_amount * ".$this->db->ifsql("t.opp_percent IS NULL".($wonlostfilter ? " OR cls.code IN ('WON','LOST')" : ""), '0', 't.opp_percent')." / 100) as weighted";
151  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t LEFT JOIN ".MAIN_DB_PREFIX."c_lead_status as cls ON cls.rowid = t.fk_opp_status";
152  // No check is done on company permission because readability is managed by public status of project and assignement.
153  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
154  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
155  $sql .= $this->buildWhere();
156  // For external user, no check is done on company permission because readability is managed by public status of project and assignement.
157  //if ($socid > 0) $sql.= " AND t.fk_soc = ".((int) $socid);
158  // No check is done on company permission because readability is managed by public status of project and assignement.
159  //if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id).") OR (s.rowid IS NULL))";
160  $sql .= " GROUP BY year";
161  $sql .= $this->db->order('year', 'DESC');
162 
163  return $this->_getAllByYear($sql);
164  }
165 
166 
172  public function buildWhere()
173  {
174  global $user;
175 
176  $sqlwhere_str = '';
177  $sqlwhere = array();
178 
179  // Get list of project id allowed to user (in a string list separated by coma)
180  $object = new Project($this->db);
181  $projectsListId = '';
182  if (empty($user->rights->projet->all->lire)) {
183  $projectsListId = $object->getProjectsAuthorizedForUser($user, 0, 1, $user->socid);
184  }
185 
186  $sqlwhere[] = ' t.entity IN ('.getEntity('project').')';
187 
188  if (!empty($this->userid)) {
189  $sqlwhere[] = ' t.fk_user_resp = '.((int) $this->userid);
190  }
191 
192  // Forced filter on socid is similar to forced filter on project. TODO Use project assignement to allow to not use filter on project
193  if (!empty($this->socid)) {
194  $sqlwhere[] = ' t.fk_soc = '.((int) $this->socid);
195  }
196  if (!empty($this->year) && empty($this->month)) {
197  $sqlwhere[] = " t.datec BETWEEN '".$this->db->idate(dol_get_first_day($this->year, 1))."' AND '".$this->db->idate(dol_get_last_day($this->year, 12))."'";
198  }
199  if (!empty($this->year) && !empty($this->month)) {
200  $sqlwhere[] = " t.datec BETWEEN '".$this->db->idate(dol_get_first_day($this->year, $this->month))."' AND '".$this->db->idate(dol_get_last_day($this->year, $this->month))."'";
201  }
202 
203  if (!empty($this->status)) {
204  $sqlwhere[] = " t.fk_statut IN (".$this->db->sanitize($this->status).")";
205  }
206 
207  if (!empty($this->opp_status)) {
208  if (is_numeric($this->opp_status) && $this->opp_status > 0) {
209  $sqlwhere[] = " t.fk_opp_status = ".((int) $this->opp_status);
210  }
211  if ($this->opp_status == 'all') {
212  $sqlwhere[] = " (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1)";
213  }
214  if ($this->opp_status == 'openedopp') {
215  $sqlwhere[] = " (t.fk_opp_status IS NOT NULL AND t.fk_opp_status <> -1 AND t.fk_opp_status NOT IN (SELECT rowid FROM ".MAIN_DB_PREFIX."c_lead_status WHERE code IN ('WON','LOST')))";
216  }
217  if ($this->opp_status == 'notopenedopp') {
218  $sqlwhere[] = " (t.fk_opp_status IS NULL OR t.fk_opp_status = -1 OR t.fk_opp_status IN (SELECT rowid FROM ".MAIN_DB_PREFIX."c_lead_status WHERE code = 'WON'))";
219  }
220  if ($this->opp_status == 'none') {
221  $sqlwhere[] = " (t.fk_opp_status IS NULL OR t.fk_opp_status = -1)";
222  }
223  }
224 
225  if (empty($user->rights->projet->all->lire)) {
226  $sqlwhere[] = " t.rowid IN (".$this->db->sanitize($projectsListId).")"; // public and assigned to, or restricted to company for external users
227  }
228 
229  if (count($sqlwhere) > 0) {
230  $sqlwhere_str = ' WHERE '.implode(' AND ', $sqlwhere);
231  }
232 
233  return $sqlwhere_str;
234  }
235 
243  public function getNbByMonth($year, $format = 0)
244  {
245  $this->year = $year;
246 
247  $sql = "SELECT date_format(t.datec,'%m') as dm, COUNT(*) as nb";
248  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t";
249  // No check is done on company permission because readability is managed by public status of project and assignement.
250  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
251  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
252  $sql .= $this->buildWhere();
253  $sql .= " GROUP BY dm";
254  $sql .= $this->db->order('dm', 'DESC');
255 
256  $res = $this->_getNbByMonth($year, $sql, $format);
257  // var_dump($res);print '<br>';
258  return $res;
259  }
260 
268  public function getAmountByMonth($year, $format = 0)
269  {
270  $this->year = $year;
271 
272  $sql = "SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount)";
273  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t";
274  // No check is done on company permission because readability is managed by public status of project and assignement.
275  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
276  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
277  $sql .= $this->buildWhere();
278  $sql .= " GROUP BY dm";
279  $sql .= $this->db->order('dm', 'DESC');
280 
281  $res = $this->_getAmountByMonth($year, $sql, $format);
282  // var_dump($res);print '<br>';
283  return $res;
284  }
285 
286 
296  public function getWeightedAmountByMonthWithPrevYear($endyear, $startyear, $cachedelay = 0, $wonlostfilter = 1)
297  {
298  global $conf, $user, $langs;
299 
300  if ($startyear > $endyear) {
301  return -1;
302  }
303 
304  $datay = array();
305 
306  // Search into cache
307  if (!empty($cachedelay)) {
308  include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
309  include_once DOL_DOCUMENT_ROOT.'/core/lib/json.lib.php';
310  }
311 
312  $newpathofdestfile = $conf->user->dir_temp.'/'.get_class($this).'_'.__FUNCTION__.'_'.(empty($this->cachefilesuffix) ? '' : $this->cachefilesuffix.'_').$langs->defaultlang.'_user'.$user->id.'.cache';
313  $newmask = '0644';
314 
315  $nowgmt = dol_now();
316 
317  $foundintocache = 0;
318  if ($cachedelay > 0) {
319  $filedate = dol_filemtime($newpathofdestfile);
320  if ($filedate >= ($nowgmt - $cachedelay)) {
321  $foundintocache = 1;
322 
323  $this->lastfetchdate[get_class($this).'_'.__FUNCTION__] = $filedate;
324  } else {
325  dol_syslog(get_class($this).'::'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
326  }
327  }
328 
329  // Load file into $data
330  if ($foundintocache) { // Cache file found and is not too old
331  dol_syslog(get_class($this).'::'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
332  $data = json_decode(file_get_contents($newpathofdestfile), true);
333  } else {
334  $year = $startyear;
335  while ($year <= $endyear) {
336  $datay[$year] = $this->getWeightedAmountByMonth($year, $wonlostfilter);
337  $year++;
338  }
339 
340  $data = array();
341  // $data = array('xval'=>array(0=>xlabel,1=>yval1,2=>yval2...),...)
342  for ($i = 0; $i < 12; $i++) {
343  $data[$i][] = $datay[$endyear][$i][0]; // set label
344  $year = $startyear;
345  while ($year <= $endyear) {
346  $data[$i][] = $datay[$year][$i][1]; // set yval for x=i
347  $year++;
348  }
349  }
350  }
351 
352  // Save cache file
353  if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == -1)) {
354  dol_syslog(get_class($this).'::'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
355  if (!dol_is_dir($conf->user->dir_temp)) {
356  dol_mkdir($conf->user->dir_temp);
357  }
358  $fp = fopen($newpathofdestfile, 'w');
359  if ($fp) {
360  fwrite($fp, json_encode($data));
361  fclose($fp);
362  dolChmod($newpathofdestfile);
363  } else {
364  dol_syslog("Failed to write cache file", LOG_ERR);
365  }
366  $this->lastfetchdate[get_class($this).'_'.__FUNCTION__] = $nowgmt;
367  }
368 
369  return $data;
370  }
371 
372 
380  public function getWeightedAmountByMonth($year, $wonlostfilter = 1)
381  {
382  $this->year = $year;
383 
384  $sql = "SELECT date_format(t.datec,'%m') as dm, SUM(t.opp_amount * ".$this->db->ifsql("t.opp_percent IS NULL".($wonlostfilter ? " OR cls.code IN ('WON','LOST')" : ""), '0', 't.opp_percent')." / 100)";
385  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t LEFT JOIN ".MAIN_DB_PREFIX.'c_lead_status as cls ON t.fk_opp_status = cls.rowid';
386  // No check is done on company permission because readability is managed by public status of project and assignement.
387  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
388  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
389  $sql .= $this->buildWhere();
390  $sql .= " GROUP BY dm";
391  $sql .= $this->db->order('dm', 'DESC');
392 
393  $res = $this->_getAmountByMonth($year, $sql);
394  // var_dump($res);print '<br>';
395  return $res;
396  }
397 
406  public function getTransformRateByMonthWithPrevYear($endyear, $startyear, $cachedelay = 0)
407  {
408  global $conf, $user, $langs;
409 
410  if ($startyear > $endyear) {
411  return -1;
412  }
413 
414  $datay = array();
415 
416  // Search into cache
417  if (!empty($cachedelay)) {
418  include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
419  include_once DOL_DOCUMENT_ROOT.'/core/lib/json.lib.php';
420  }
421 
422  $newpathofdestfile = $conf->user->dir_temp.'/'.get_class($this).'_'.__FUNCTION__.'_'.(empty($this->cachefilesuffix) ? '' : $this->cachefilesuffix.'_').$langs->defaultlang.'_user'.$user->id.'.cache';
423  $newmask = '0644';
424 
425  $nowgmt = dol_now();
426 
427  $foundintocache = 0;
428  if ($cachedelay > 0) {
429  $filedate = dol_filemtime($newpathofdestfile);
430  if ($filedate >= ($nowgmt - $cachedelay)) {
431  $foundintocache = 1;
432 
433  $this->lastfetchdate[get_class($this).'_'.__FUNCTION__] = $filedate;
434  } else {
435  dol_syslog(get_class($this).'::'.__FUNCTION__." cache file ".$newpathofdestfile." is not found or older than now - cachedelay (".$nowgmt." - ".$cachedelay.") so we can't use it.");
436  }
437  }
438 
439  // Load file into $data
440  if ($foundintocache) { // Cache file found and is not too old
441  dol_syslog(get_class($this).'::'.__FUNCTION__." read data from cache file ".$newpathofdestfile." ".$filedate.".");
442  $data = json_decode(file_get_contents($newpathofdestfile), true);
443  } else {
444  $year = $startyear;
445  while ($year <= $endyear) {
446  $datay[$year] = $this->getTransformRateByMonth($year);
447  $year++;
448  }
449 
450  $data = array();
451  // $data = array('xval'=>array(0=>xlabel,1=>yval1,2=>yval2...),...)
452  for ($i = 0; $i < 12; $i++) {
453  $data[$i][] = $datay[$endyear][$i][0]; // set label
454  $year = $startyear;
455  while ($year <= $endyear) {
456  $data[$i][] = $datay[$year][$i][1]; // set yval for x=i
457  $year++;
458  }
459  }
460  }
461 
462  // Save cache file
463  if (empty($foundintocache) && ($cachedelay > 0 || $cachedelay == - 1)) {
464  dol_syslog(get_class($this).'::'.__FUNCTION__." save cache file ".$newpathofdestfile." onto disk.");
465  if (!dol_is_dir($conf->user->dir_temp)) {
466  dol_mkdir($conf->user->dir_temp);
467  }
468  $fp = fopen($newpathofdestfile, 'w');
469  if ($fp) {
470  fwrite($fp, json_encode($data));
471  fclose($fp);
472  dolChmod($newpathofdestfile);
473  }
474 
475  $this->lastfetchdate[get_class($this).'_'.__FUNCTION__] = $nowgmt;
476  }
477 
478  return $data;
479  }
480 
488  public function getTransformRateByMonth($year, $format = 0)
489  {
490  $this->year = $year;
491 
492  $sql = "SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
493  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t";
494  // No check is done on company permission because readability is managed by public status of project and assignement.
495  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
496  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
497  $sql .= $this->buildWhere();
498  $sql .= " GROUP BY dm";
499  $sql .= $this->db->order('dm', 'DESC');
500 
501  $res_total = $this->_getNbByMonth($year, $sql, $format);
502 
503  $this->status = 6;
504 
505  $sql = "SELECT date_format(t.datec,'%m') as dm, count(t.opp_amount)";
506  $sql .= " FROM ".MAIN_DB_PREFIX."projet as t";
507  // No check is done on company permission because readability is managed by public status of project and assignement.
508  //if (! $user->rights->societe->client->voir && ! $user->soc_id)
509  // $sql .= " INNER JOIN " . MAIN_DB_PREFIX . "societe_commerciaux as sc ON sc.fk_soc=t.fk_soc AND sc.fk_user = ".((int) $user->id);
510  $sql .= $this->buildWhere();
511  $sql .= " GROUP BY dm";
512  $sql .= $this->db->order('dm', 'DESC');
513 
514  $this->status = 0;
515 
516  $res_only_wined = $this->_getNbByMonth($year, $sql, $format);
517 
518  $res = array();
519 
520  foreach ($res_total as $key => $total_row) {
521  //var_dump($total_row);
522  if (!empty($total_row[1])) {
523  $res[$key] = array($total_row[0], (100 * $res_only_wined[$key][1]) / $total_row[1]);
524  } else {
525  $res[$key] = array($total_row[0], 0);
526  }
527  }
528  // var_dump($res);print '<br>';
529  return $res;
530  }
531 
537  protected function getAverageByMonth($year)
538  {
539  $sql = "SELECT date_format(datef,'%m') as dm, AVG(f.".$this->field.")";
540  $sql .= " FROM ".$this->from;
541  $sql .= " WHERE f.datef BETWEEN '".$this->db->idate(dol_get_first_day($year))."' AND '".$this->db->idate(dol_get_last_day($year))."'";
542  $sql .= " AND ".$this->where;
543  $sql .= " GROUP BY dm";
544  $sql .= $this->db->order('dm', 'DESC');
545 
546  return $this->_getAverageByMonth($year, $sql);
547  }
548 }
Class to manage projects.
Class to manage statistics on projects.
getAmountByMonth($year, $format=0)
Return the Project amount by month for a year.
__construct($db)
Constructor.
buildWhere()
Build the where part.
getAllByYear()
Return count, and sum of products.
getTransformRateByMonth($year, $format=0)
Return the Project transformation rate by month for a year.
getAllProjectByStatus($limit=5)
Return all leads grouped by opportunity status.
getNbByMonth($year, $format=0)
Return Project number by month for a year.
getWeightedAmountByMonth($year, $wonlostfilter=1)
Return the Project weighted opp amount by month for a year.
getAverageByMonth($year)
Return average of entity by month.
getTransformRateByMonthWithPrevYear($endyear, $startyear, $cachedelay=0)
Return amount of elements by month for several years.
getWeightedAmountByMonthWithPrevYear($endyear, $startyear, $cachedelay=0, $wonlostfilter=1)
Return amount of elements by month for several years.
Parent class of statistics class.
Definition: stats.class.php:31
_getAverageByMonth($year, $sql, $format=0)
Renvoie le montant moyen par mois pour une annee donnee Return the amount average par month for a giv...
_getAmountByMonth($year, $sql, $format=0)
Return the amount per month for a given year.
_getAllByYear($sql)
Return nb of elements, total amount and avg amount each year.
_getNbByMonth($year, $sql, $format=0)
Renvoie le nombre de documents par mois pour une annee donnee Return number of documents per month fo...
if(isModEnabled('facture') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $sql
Social contributions to pay.
Definition: index.php:746
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition: date.lib.php:576
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition: date.lib.php:595
dol_filemtime($pathoffile)
Return time of a file.
Definition: files.lib.php:599
dol_is_dir($folder)
Test if filename is a directory.
Definition: files.lib.php:453
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)