dolibarr 21.0.0-alpha
printing.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.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 */
19
35{
36 global $langs, $conf;
37
38 $h = 0;
39 $head = array();
40
41 $head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=config";
42 $head[$h][1] = $langs->trans("ListDrivers");
43 $head[$h][2] = 'config';
44 $h++;
45
46 if ($mode == 'setup') {
47 $head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=setup&driver=".GETPOST('driver', 'alpha');
48 $head[$h][1] = $langs->trans("SetupDriver");
49 $head[$h][2] = 'setup';
50 $h++;
51 }
52
53 if ($mode == 'test') {
54 $head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=test&driver=".GETPOST('driver', 'alpha');
55 $head[$h][1] = $langs->trans("TargetedPrinter");
56 $head[$h][2] = 'test';
57 $h++;
58 }
59
67 //$object=new stdClass();
68
69 // Show more tabs from modules
70 // Entries must be declared in modules descriptor with line
71 // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
72 // $this->tabs = array('entity:-tabname); to remove a tab
73 //complete_head_from_modules($conf,$langs,$object,$head,$h,'printingadmin');
74
75 //complete_head_from_modules($conf,$langs,$object,$head,$h,'printing','remove');
76
77 return $head;
78}
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
printingAdminPrepareHead($mode)
Define head array for tabs of printing tools setup pages.