dolibarr/htdocs/printing/lib/printing.lib.php

80 lines
2.5 KiB
PHP
Raw Normal View History

2013-03-08 11:26:05 +01:00
<?php
2015-02-11 15:05:52 +01:00
/* Copyright (C) 2015 Laurent Destailleur <eldy@users.sourceforge.net>
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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
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
*
2015-02-11 15:05:52 +01:00
* @param string $mode Mode
2015-02-11 14:22:44 +01:00
* @return Array of head
2013-03-08 11:26:05 +01:00
*/
2015-02-11 14:22:44 +01:00
function printingadmin_prepare_head($mode)
2013-03-08 11:26:05 +01:00
{
global $langs, $conf;
$h = 0;
$head = array();
2014-12-08 20:33:26 +01:00
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=config";
$head[$h][1] = $langs->trans("ListDrivers");
2013-03-08 11:26:05 +01:00
$head[$h][2] = 'config';
$h++;
2015-02-11 14:22:44 +01:00
if ($mode == 'setup')
{
2015-11-13 02:11:47 +01:00
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=setup&driver=".GETPOST('driver','alpha');
2015-02-11 14:22:44 +01:00
$head[$h][1] = $langs->trans("SetupDriver");
$head[$h][2] = 'setup';
$h++;
}
2014-12-08 20:33:26 +01:00
2015-02-11 14:22:44 +01:00
if ($mode == 'test')
{
2015-11-13 02:11:47 +01:00
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=test&driver=".GETPOST('driver','alpha');
2015-02-11 14:22:44 +01:00
$head[$h][1] = $langs->trans("TargetedPrinter");
$head[$h][2] = 'test';
$h++;
}
2013-03-08 11:26:05 +01:00
2015-02-11 14:22:44 +01:00
/** TODO This feature seem to be not ready yet.
$head[$h][0] = DOL_URL_ROOT."/printing/admin/printing.php?mode=userconf";
$head[$h][1] = $langs->trans("UserConf");
$head[$h][2] = 'userconf';
$h++;
*/
2014-12-11 21:58:56 +01:00
2014-12-08 20:33:26 +01:00
//$object=new stdClass();
2013-03-08 11:26:05 +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
2014-12-08 20:33:26 +01:00
//complete_head_from_modules($conf,$langs,$object,$head,$h,'printingadmin');
2013-03-08 11:26:05 +01:00
2014-12-08 20:33:26 +01:00
//complete_head_from_modules($conf,$langs,$object,$head,$h,'printing','remove');
2013-03-08 11:26:05 +01:00
return $head;
}