dolibarr 19.0.3
modules_action.php
1<?php
2/* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2016 Charlie Benke <charlie@patas-monkey.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 * or see https://www.gnu.org/
21 */
22
23require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
24
29abstract class ModeleAction extends CommonDocGenerator
30{
34 public $error = '';
35
36 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
44 public static function liste_modeles($db, $maxfilenamelength = 0)
45 {
46 // phpcs:enable
47 $type = 'action';
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// phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps
70function action_create($db, $object, $modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
71{
72 // phpcs:enable
73 global $conf, $langs;
74
75 $langs->load("action");
76
77 $error = 0;
78
79 $srctemplatepath = '';
80
81 // Position modele on the name of fichinter model to use
82 if (!dol_strlen($modele)) {
83 if (getDolGlobalString('ACTION_EVENT_ADDON_PDF')) {
84 $modele = $conf->global->ACTION_EVENT_ADDON_PDF;
85 } else {
86 $modele = 'soleil';
87 }
88 }
89
90 // If selected modele is a filename template (then $modele="modelname:filename")
91 $tmp = explode(':', $modele, 2);
92 if (!empty($tmp[1])) {
93 $modele = $tmp[0];
94 $srctemplatepath = $tmp[1];
95 }
96
97 // Search template files
98 $file = '';
99 $classname = '';
100 $filefound = 0;
101 $dirmodels = array('/');
102 if (is_array($conf->modules_parts['models'])) {
103 $dirmodels = array_merge($dirmodels, $conf->modules_parts['models']);
104 }
105 foreach ($dirmodels as $reldir) {
106 foreach (array('doc', 'pdf') as $prefix) {
107 $file = $prefix."_".$modele.".modules.php";
108
109 // On verifie l'emplacement du modele
110 $file = dol_buildpath($reldir."core/modules/action/doc/".$file, 0);
111 if (file_exists($file)) {
112 $filefound = 1;
113 $classname = $prefix.'_'.$modele;
114 break;
115 }
116 }
117 if ($filefound) {
118 break;
119 }
120 }
121
122 // Charge le modele
123 if ($filefound) {
124 require_once $file;
125
126 $obj = new $classname($db);
127
128 // We save charset_output to restore it because write_file can change it if needed for
129 // output format that does not support UTF8.
130 $sav_charset_output = $outputlangs->charset_output;
131 if ($obj->write_file($object, $outputlangs, $srctemplatepath, $hidedetails, $hidedesc, $hideref) > 0) {
132 $outputlangs->charset_output = $sav_charset_output;
133
134 // We delete old preview
135 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
136 dol_delete_preview($object);
137
138 return 1;
139 } else {
140 $outputlangs->charset_output = $sav_charset_output;
141 dol_print_error($db, "action_pdf_create Error: ".$obj->error);
142 return 0;
143 }
144 } else {
145 print $langs->trans("Error")." ".$langs->trans("ErrorFileDoesNotExists", $file);
146 return 0;
147 }
148}
Parent class for documents (PDF, ODT, ...) generators.
Parent class for product models of doc generators.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
dol_delete_preview($object)
Delete all preview files linked to object instance.
getListOfModels($db, $type, $maxfilenamelength=0)
Return list of activated modules usable for document generation.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.