2010-01-12 18:02:23 +00:00
|
|
|
<?php
|
2018-10-27 12:43:12 +00:00
|
|
|
/* Copyright (C) 2010-2014 Regis Houssin <regis.houssin@inodbox.com>
|
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 10:30:37 +00:00
|
|
|
* Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
|
2010-01-12 18:02:23 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 14:36:08 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2010-01-12 18:02:23 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-09-23 19:55:30 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
* or see https://www.gnu.org/
|
2010-01-12 18:02:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2011-10-24 12:11:49 +00:00
|
|
|
* \file htdocs/core/modules/project/modules_project.php
|
2010-01-12 18:02:23 +00:00
|
|
|
* \ingroup project
|
|
|
|
|
* \brief File that contain parent class for projects models
|
|
|
|
|
* and parent class for projects numbering models
|
|
|
|
|
*/
|
2012-08-22 21:11:24 +00:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
|
2023-08-09 12:50:28 +00:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/commonnumrefgenerator.class.php';
|
2010-01-12 18:02:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-02-16 17:39:22 +00:00
|
|
|
* Parent class for projects models
|
2010-01-12 18:02:23 +00:00
|
|
|
*/
|
2011-08-27 15:40:08 +00:00
|
|
|
abstract class ModelePDFProjects extends CommonDocGenerator
|
2010-01-12 18:02:23 +00:00
|
|
|
{
|
2020-11-13 14:02:49 +00:00
|
|
|
/**
|
2024-01-13 14:50:02 +00:00
|
|
|
* @var DoliDB Database handler
|
2020-11-13 14:02:49 +00:00
|
|
|
*/
|
|
|
|
|
public $db;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string model description (short text)
|
|
|
|
|
*/
|
|
|
|
|
public $description;
|
|
|
|
|
|
2010-01-12 18:02:23 +00:00
|
|
|
|
2020-10-31 13:32:18 +00:00
|
|
|
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
|
|
|
|
|
/**
|
2012-02-16 17:39:22 +00:00
|
|
|
* Return list of active generation modules
|
2012-03-13 08:38:00 +00:00
|
|
|
*
|
2020-10-31 13:32:18 +00:00
|
|
|
* @param DoliDB $db Database handler
|
|
|
|
|
* @param integer $maxfilenamelength Max length of value to show
|
|
|
|
|
* @return array List of templates
|
|
|
|
|
*/
|
|
|
|
|
public static function liste_modeles($db, $maxfilenamelength = 0)
|
2010-01-12 18:02:23 +00:00
|
|
|
{
|
2020-10-31 13:32:18 +00:00
|
|
|
// phpcs:enable
|
2020-04-10 08:59:32 +00:00
|
|
|
$type = 'project';
|
2021-02-09 13:09:02 +00:00
|
|
|
$list = array();
|
2010-01-12 18:02:23 +00:00
|
|
|
|
2012-08-23 00:04:35 +00:00
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
2021-02-09 13:09:02 +00:00
|
|
|
$list = getListOfModels($db, $type, $maxfilenamelength);
|
2010-01-12 18:02:23 +00:00
|
|
|
|
2021-02-09 13:09:02 +00:00
|
|
|
return $list;
|
2010-01-12 18:02:23 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2024-01-13 18:48:20 +00:00
|
|
|
* Class mere des modeles de numerotation des references de projects
|
2010-01-12 18:02:23 +00:00
|
|
|
*/
|
2023-08-09 12:50:28 +00:00
|
|
|
abstract class ModeleNumRefProjects extends CommonNumRefGenerator
|
2010-01-12 18:02:23 +00:00
|
|
|
{
|
2023-08-09 12:50:28 +00:00
|
|
|
// No overload code
|
2010-01-12 18:02:23 +00:00
|
|
|
}
|