dolibarr  17.0.4
actions_printing.inc.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2014-2016 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2014-2018 Frederic France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  * or see https://www.gnu.org/
18  */
19 
26 // $action must be defined
27 // $db, $user, $conf, $langs must be defined
28 // Filename to print must be provided into 'file' parameter
29 
30 // Print file
31 if ($action == 'print_file' && $user->rights->printing->read) {
32  $langs->load("printing");
33  require_once DOL_DOCUMENT_ROOT.'/core/modules/printing/modules_printing.php';
34  $objectprint = new PrintingDriver($db);
35  $list = $objectprint->listDrivers($db, 10);
36  $dirmodels = array_merge(array('/core/modules/printing/'), (array) $conf->modules_parts['printing']);
37  if (!empty($list)) {
38  $errorprint = 0;
39  $printerfound = 0;
40  foreach ($list as $driver) {
41  foreach ($dirmodels as $dir) {
42  if (file_exists(dol_buildpath($dir, 0).$driver.'.modules.php')) {
43  $classfile = dol_buildpath($dir, 0).$driver.'.modules.php';
44  break;
45  }
46  }
47  require_once $classfile;
48  $classname = 'printing_'.$driver;
49  $printer = new $classname($db);
50  $langs->load($printer::LANGFILE);
51  //print '<pre>'.print_r($printer, true).'</pre>';
52 
53  if (!empty($conf->global->{$printer->active})) {
54  $printerfound++;
55 
56  $subdir = '';
57  $module = GETPOST('printer', 'alpha');
58  switch ($module) {
59  case 'livraison':
60  $subdir = 'receipt';
61  $module = 'expedition';
62  break;
63  case 'expedition':
64  $subdir = 'sending';
65  break;
66  case 'commande_fournisseur':
67  $module = 'fournisseur';
68  $subdir = 'commande';
69  break;
70  }
71  try {
72  $ret = $printer->printFile(GETPOST('file', 'alpha'), $module, $subdir);
73  if ($ret > 0) {
74  //print '<pre>'.print_r($printer->errors, true).'</pre>';
75  setEventMessages($printer->error, $printer->errors, 'errors');
76  }
77  if ($ret == 0) {
78  //print '<pre>'.print_r($printer->errors, true).'</pre>';
79  setEventMessages($printer->error, $printer->errors);
80  setEventMessages($langs->transnoentitiesnoconv("FileWasSentToPrinter", basename(GETPOST('file', 'alpha'))).' '.$langs->transnoentitiesnoconv("ViaModule").' '.$printer->name, null);
81  }
82  } catch (Exception $e) {
83  $ret = 1;
84  setEventMessages($e->getMessage(), null, 'errors');
85  }
86  }
87  }
88  if ($printerfound == 0) {
89  setEventMessages($langs->trans("NoActivePrintingModuleFound", $langs->transnoentities("Module64000Name")), null, 'warnings');
90  }
91  } else {
92  setEventMessages($langs->trans("NoModuleFound"), null, 'warnings');
93  }
94  $action = '';
95 }
Parent class of emailing target selectors modules.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.