2013-03-08 11:26:05 +01:00
|
|
|
<?php
|
2018-09-13 11:13:32 +02:00
|
|
|
/* Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
2024-11-08 14:41:01 +01:00
|
|
|
* Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
|
2024-10-14 01:59:44 +02:00
|
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
2013-03-08 11:26:05 +01: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
|
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
|
* (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 21:55:30 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2013-03-08 11:26:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-08 20:33:26 +01:00
|
|
|
* \file htdocs/printing/lib/printing.lib.php
|
|
|
|
|
* \ingroup printing
|
|
|
|
|
* \brief Library for printing functions
|
2013-03-08 11:26:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-08 20:33:26 +01:00
|
|
|
* Define head array for tabs of printing tools setup pages
|
2013-03-08 11:26:05 +01:00
|
|
|
*
|
2018-09-13 11:13:32 +02:00
|
|
|
* @param string $mode Mode
|
2024-10-14 01:59:44 +02:00
|
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
2013-03-08 11:26:05 +01:00
|
|
|
*/
|
2018-09-13 11:13:32 +02:00
|
|
|
function printingAdminPrepareHead($mode)
|
2013-03-08 11:26:05 +01:00
|
|
|
{
|
2020-03-23 15:54:02 +01:00
|
|
|
global $langs, $conf;
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
$h = 0;
|
|
|
|
|
$head = array();
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=config";
|
|
|
|
|
$head[$h][1] = $langs->trans("ListDrivers");
|
|
|
|
|
$head[$h][2] = 'config';
|
|
|
|
|
$h++;
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
if ($mode == 'setup') {
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=setup&driver=".GETPOST('driver', 'alpha');
|
|
|
|
|
$head[$h][1] = $langs->trans("SetupDriver");
|
|
|
|
|
$head[$h][2] = 'setup';
|
|
|
|
|
$h++;
|
|
|
|
|
}
|
2014-12-08 20:33:26 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
if ($mode == 'test') {
|
|
|
|
|
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=test&driver=".GETPOST('driver', 'alpha');
|
|
|
|
|
$head[$h][1] = $langs->trans("TargetedPrinter");
|
|
|
|
|
$head[$h][2] = 'test';
|
|
|
|
|
$h++;
|
|
|
|
|
}
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2024-11-08 14:41:01 +01:00
|
|
|
/* TODO This feature seem to be not ready yet.
|
2021-02-26 15:26:09 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=userconf";
|
|
|
|
|
$head[$h][1] = $langs->trans("UserConf");
|
|
|
|
|
$head[$h][2] = 'userconf';
|
|
|
|
|
$h++;
|
2020-03-23 15:54:02 +01:00
|
|
|
*/
|
2014-12-11 21:58:56 +01:00
|
|
|
|
2024-11-08 14:41:01 +01:00
|
|
|
// $object=new stdClass();
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
// Show more tabs from modules
|
|
|
|
|
// Entries must be declared in modules descriptor with line
|
|
|
|
|
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
|
|
|
|
|
// $this->tabs = array('entity:-tabname); to remove a tab
|
2024-11-08 14:41:01 +01:00
|
|
|
// complete_head_from_modules($conf,$langs,$object,$head,$h,'printingadmin');
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2024-11-08 14:41:01 +01:00
|
|
|
// complete_head_from_modules($conf,$langs,$object,$head,$h,'printing','remove');
|
2013-03-08 11:26:05 +01:00
|
|
|
|
2020-03-23 15:54:02 +01:00
|
|
|
return $head;
|
2013-03-08 11:26:05 +01:00
|
|
|
}
|