dolibarr  13.0.2
modules_printing.php
Go to the documentation of this file.
1 <?php
2 /*
3  * Copyright (C) 2014-2018 Frederic 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  * or see https://www.gnu.org/
18  */
19 
25 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
26 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
27 
28 
33 {
37  public $db;
38 
42  public $error = '';
43 
44 
50  public function __construct($db)
51  {
52  $this->db = $db;
53  }
54 
62  public static function listDrivers($db, $maxfilenamelength = 0)
63  {
64  global $conf;
65 
66  $type = 'printing';
67  $list = array();
68 
69  $listoffiles = array();
70  $dirmodels = array_merge(array('/core/modules/printing/'), (array) $conf->modules_parts['printing']);
71  foreach ($dirmodels as $dir) {
72  $tmpfiles = dol_dir_list(dol_buildpath($dir, 0), 'all', 0, '\modules.php', '', 'name', SORT_ASC, 0);
73  if (!empty($tmpfiles)) {
74  $listoffiles = array_merge($listoffiles, $tmpfiles);
75  }
76  }
77  foreach ($listoffiles as $record) {
78  $list[$record['fullname']] = str_replace('.modules.php', '', $record['name']);
79  }
80  return $list;
81  }
82 
88  public function getDesc()
89  {
90  global $langs;
91  $langs->load("printing");
92  $transstring = "PrintingModuleDesc".$this->name;
93  if ($langs->trans($transstring) != $transstring) return $langs->trans($transstring);
94  else return $this->desc;
95  }
96 }
__construct($db)
Constructor.
Parent class of emailing target selectors modules.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
$conf db
API class for accounts.
Definition: inc.php:54
static listDrivers($db, $maxfilenamelength=0)
Return list of printing driver.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
getDesc()
Return description of Printing Module.