Files
dolibarr/htdocs/webportal/lib/webportal.lib.php
Laurent Destailleur 25a91c63cf Debug webportal module
2024-01-27 17:23:03 +01:00

83 lines
2.5 KiB
PHP

<?php
/* Copyright (C) 2023-2024 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2023-2024 Lionel Vessiller <lvessiller@easya.solutions>
*
* 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 <https://www.gnu.org/licenses/>.
*/
/**
* \file lib/webportal.lib.php
* \ingroup webportal
* \brief Library files with common functions for WebPortal
*/
/**
* Prepare admin pages header
*
* @return array
*/
function webportalAdminPrepareHead()
{
global $langs, $conf;
// global $db;
// $extrafields = new ExtraFields($db);
// $extrafields->fetch_name_optionals_label('myobject');
$langs->load("website");
$h = 0;
$head = array();
$head[$h][0] = dol_buildpath("/webportal/admin/setup.php", 1);
$head[$h][1] = $langs->trans("Settings");
$head[$h][2] = 'settings';
$h++;
$head[$h][0] = dol_buildpath("/webportal/admin/setup_theme.php", 1);
$head[$h][1] = $langs->trans("SkinAndColors");
$head[$h][2] = 'themesettings';
$h++;
$head[$h][0] = dol_buildpath("/webportal/admin/configcss.php", 1);
$head[$h][1] = $langs->trans("CSSPage");
$head[$h][2] = 'css';
$h++;
/*
$head[$h][0] = dol_buildpath("/webportal/admin/myobject_extrafields.php", 1);
$head[$h][1] = $langs->trans("ExtraFields");
$nbExtrafields = is_countable($extrafields->attributes['myobject']['label']) ? count($extrafields->attributes['myobject']['label']) : 0;
if ($nbExtrafields > 0) {
$head[$h][1] .= ' <span class="badge">' . $nbExtrafields . '</span>';
}
$head[$h][2] = 'myobject_extrafields';
$h++;
*/
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
//$this->tabs = array(
// 'entity:+tabname:Title:@webportal:/webportal/mypage.php?id=__ID__'
//); // to add new tab
//$this->tabs = array(
// 'entity:-tabname:Title:@webportal:/webportal/mypage.php?id=__ID__'
//); // to remove a tab
complete_head_from_modules($conf, $langs, null, $head, $h, 'website');
complete_head_from_modules($conf, $langs, null, $head, $h, 'website', 'remove');
return $head;
}