dolibarr 20.0.0
modules_project.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2010-2014 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2014 Marcos GarcĂ­a <marcosgdf@gmail.com>
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
26require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
27require_once DOL_DOCUMENT_ROOT.'/core/class/commonnumrefgenerator.class.php';
28
29
34{
38 public $db;
39
43 public $description;
44
45
46 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
54 public static function liste_modeles($db, $maxfilenamelength = 0)
55 {
56 // phpcs:enable
57 $type = 'project';
58 $list = array();
59
60 include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
61 $list = getListOfModels($db, $type, $maxfilenamelength);
62
63 return $list;
64 }
65}
66
67
68
73{
74 // No overload code
75}
Parent class for documents (PDF, ODT, ...) generators.
Parent class for number ref generators.
Class parent for numbering modules of tasks.
Parent class for projects models.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
getListOfModels($db, $type, $maxfilenamelength=0)
Return list of activated modules usable for document generation.