dolibarr  16.0.5
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  global $conf;
48 
49  $type = 'ticket';
50  $list = array();
51 
52  include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
53  $list = getListOfModels($db, $type, $maxfilenamelength);
54 
55  return $list;
56  }
57 }
58 
59 
63 abstract class ModeleNumRefTicket
64 {
68  public $error = '';
69 
75  public function isEnabled()
76  {
77  return true;
78  }
79 
85  public function info()
86  {
87  global $langs;
88  $langs->load("ticket");
89  return $langs->trans("NoDescription");
90  }
91 
97  public function getExample()
98  {
99  global $langs;
100  $langs->load("ticket");
101  return $langs->trans("NoExample");
102  }
103 
110  public function canBeActivated()
111  {
112  return true;
113  }
114 
122  public function getNextValue($objsoc, $ticket)
123  {
124  global $langs;
125  return $langs->trans("NotAvailable");
126  }
127 
133  public function getVersion()
134  {
135  global $langs;
136  $langs->load("admin");
137 
138  if ($this->version == 'development') {
139  return $langs->trans("VersionDevelopment");
140  }
141 
142  if ($this->version == 'experimental') {
143  return $langs->trans("VersionExperimental");
144  }
145 
146  if ($this->version == 'dolibarr') {
147  return DOL_VERSION;
148  }
149 
150  if ($this->version) {
151  return $this->version;
152  }
153 
154  return $langs->trans("NotAvailable");
155  }
156 }
ModeleNumRefTicket\getExample
getExample()
Return an example of numbering.
Definition: modules_ticket.php:97
ModeleNumRefTicket
Classe mere des modeles de numerotation des references de projets.
Definition: modules_ticket.php:63
ModelePDFTicket\liste_modeles
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
Definition: modules_ticket.php:44
ModeleNumRefTicket\getNextValue
getNextValue($objsoc, $ticket)
Renvoi prochaine valeur attribuee.
Definition: modules_ticket.php:122
ModeleNumRefTicket\info
info()
Renvoi la description par defaut du modele de numerotation.
Definition: modules_ticket.php:85
ModelePDFTicket
Parent class for documents models.
Definition: modules_ticket.php:33
ModeleNumRefTicket\isEnabled
isEnabled()
Return if a module can be used or not.
Definition: modules_ticket.php:75
ModeleNumRefTicket\getVersion
getVersion()
Renvoi version du module numerotation.
Definition: modules_ticket.php:133
getListOfModels
getListOfModels($db, $type, $maxfilenamelength=0)
Return list of activated modules usable for document generation.
Definition: functions2.lib.php:1919
ModeleNumRefTicket\canBeActivated
canBeActivated()
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
Definition: modules_ticket.php:110
CommonDocGenerator
Parent class for documents generators.
Definition: commondocgenerator.class.php:36