dolibarr 18.0.6
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, $user;
74 $langs->load("action");
75
76 $error = 0;
77
78 $srctemplatepath = '';
79
80 // Position modele on the name of fichinter model to use
81 if (!dol_strlen($modele)) {
82 if (!empty($conf->global->ACTION_EVENT_ADDON_PDF)) {
83 $modele = $conf->global->ACTION_EVENT_ADDON_PDF;
84 } else {
85 $modele = 'soleil';
86 }
87 }
88
89 // If selected modele is a filename template (then $modele="modelname:filename")
90 $tmp = explode(':', $modele, 2);
91 if (!empty($tmp[1])) {
92 $modele = $tmp[0];
93 $srctemplatepath = $tmp[1];
94 }
95
96 // Search template files
97 $file = '';
98 $classname = '';
99 $filefound = 0;
100 $dirmodels = array('/');
101 if (is_array($conf->modules_parts['models'])) {
102 $dirmodels = array_merge($dirmodels, $conf->modules_parts['models']);
103 }
104 foreach ($dirmodels as $reldir) {
105 foreach (array('doc', 'pdf') as $prefix) {
106 $file = $prefix."_".$modele.".modules.php";
107
108 // On verifie l'emplacement du modele
109 $file = dol_buildpath($reldir."core/modules/action/doc/".$file, 0);
110 if (file_exists($file)) {
111 $filefound = 1;
112 $classname = $prefix.'_'.$modele;
113 break;
114 }
115 }
116 if ($filefound) {
117 break;
118 }
119 }
120
121 // Charge le modele
122 if ($filefound) {
123 require_once $file;
124
125 $obj = new $classname($db);
126
127 // We save charset_output to restore it because write_file can change it if needed for
128 // output format that does not support UTF8.
129 $sav_charset_output = $outputlangs->charset_output;
130 if ($obj->write_file($object, $outputlangs, $srctemplatepath, $hidedetails, $hidedesc, $hideref) > 0) {
131 $outputlangs->charset_output = $sav_charset_output;
132
133 // We delete old preview
134 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
135 dol_delete_preview($object);
136
137 return 1;
138 } else {
139 $outputlangs->charset_output = $sav_charset_output;
140 dol_print_error($db, "action_pdf_create Error: ".$obj->error);
141 return 0;
142 }
143 } else {
144 print $langs->trans("Error")." ".$langs->trans("ErrorFileDoesNotExists", $file);
145 return 0;
146 }
147}
Parent class for documents 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.