dolibarr  x.y.z
modules_ticket.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  * Copyright (C) 2020 Charlene Benke <charlie@patas-monkey.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  * or see https://www.gnu.org/
19  */
20 
28 require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
29 
33 abstract class ModelePDFTicket extends CommonDocGenerator
34 {
35 
36  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
44  public static function liste_modeles($db, $maxfilenamelength = 0)
45  {
46  // phpcs:enable
47  $type = 'ticket';
48  $list = array();
49 
50  include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
51  $list = getListOfModels($db, $type, $maxfilenamelength);
52 
53  return $list;
54  }
55 }
56 
57 
61 abstract class ModeleNumRefTicket
62 {
66  public $error = '';
67 
73  public function isEnabled()
74  {
75  return true;
76  }
77 
83  public function info()
84  {
85  global $langs;
86  $langs->load("ticket");
87  return $langs->trans("NoDescription");
88  }
89 
95  public function getExample()
96  {
97  global $langs;
98  $langs->load("ticket");
99  return $langs->trans("NoExample");
100  }
101 
108  public function canBeActivated()
109  {
110  return true;
111  }
112 
120  public function getNextValue($objsoc, $ticket)
121  {
122  global $langs;
123  return $langs->trans("NotAvailable");
124  }
125 
131  public function getVersion()
132  {
133  global $langs;
134  $langs->load("admin");
135 
136  if ($this->version == 'development') {
137  return $langs->trans("VersionDevelopment");
138  }
139 
140  if ($this->version == 'experimental') {
141  return $langs->trans("VersionExperimental");
142  }
143 
144  if ($this->version == 'dolibarr') {
145  return DOL_VERSION;
146  }
147 
148  if ($this->version) {
149  return $this->version;
150  }
151 
152  return $langs->trans("NotAvailable");
153  }
154 }
Parent class for documents generators.
Classe mere des modeles de numerotation des references de projets.
info()
Returns the default description of the numbering pattern.
getNextValue($objsoc, $ticket)
Renvoi prochaine valeur attribuee.
canBeActivated()
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
getExample()
Return an example of numbering.
isEnabled()
Return if a module can be used or not.
getVersion()
Renvoi version du module numerotation.
Parent class for documents 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.