mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
Clean deprecated page
This commit is contained in:
@@ -141,12 +141,6 @@ $head[$h][1] = $langs->trans("MenuAdmin");
|
|||||||
$head[$h][2] = 'editor';
|
$head[$h][2] = 'editor';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/menus/other.php";
|
|
||||||
$head[$h][1] = $langs->trans("Miscellaneous");
|
|
||||||
$head[$h][2] = 'misc';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
|
|
||||||
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
||||||
print '<input type="hidden" name="token" value="'.newToken().'">';
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
||||||
print '<input type="hidden" name="action" value="update">';
|
print '<input type="hidden" name="action" value="update">';
|
||||||
|
|||||||
@@ -224,11 +224,6 @@ $head[$h][1] = $langs->trans("MenuAdmin");
|
|||||||
$head[$h][2] = 'editor';
|
$head[$h][2] = 'editor';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/menus/other.php";
|
|
||||||
$head[$h][1] = $langs->trans("Miscellaneous");
|
|
||||||
$head[$h][2] = 'misc';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
print dol_get_fiche_head($head, 'editor', '', -1);
|
print dol_get_fiche_head($head, 'editor', '', -1);
|
||||||
|
|
||||||
print '<span class="opacitymedium">'.$langs->trans("MenusEditorDesc")."</span><br>\n";
|
print '<span class="opacitymedium">'.$langs->trans("MenusEditorDesc")."</span><br>\n";
|
||||||
|
|||||||
@@ -1,106 +0,0 @@
|
|||||||
<?php
|
|
||||||
/* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@inodbox.com>
|
|
||||||
*
|
|
||||||
* 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 htdocs/admin/menus/other.php
|
|
||||||
* \ingroup core
|
|
||||||
* \brief Menus options setup
|
|
||||||
*/
|
|
||||||
|
|
||||||
require '../../main.inc.php';
|
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
||||||
|
|
||||||
// Load translation files required by the page
|
|
||||||
$langs->loadLangs(array("user", "other", "admin"));
|
|
||||||
|
|
||||||
if (!$user->admin) accessforbidden();
|
|
||||||
|
|
||||||
$action = GETPOST('action', 'aZ09');
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Actions
|
|
||||||
*/
|
|
||||||
|
|
||||||
if ($action == 'activate_hidemenu')
|
|
||||||
{
|
|
||||||
dolibarr_set_const($db, "MAIN_MENU_HIDE_UNAUTHORIZED", '1', 'chaine', 0, '', $conf->entity);
|
|
||||||
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
||||||
exit;
|
|
||||||
} elseif ($action == 'disable_hidemenu')
|
|
||||||
{
|
|
||||||
dolibarr_del_const($db, "MAIN_MENU_HIDE_UNAUTHORIZED", $conf->entity);
|
|
||||||
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* View
|
|
||||||
*/
|
|
||||||
|
|
||||||
llxHeader('', $langs->trans("Setup"));
|
|
||||||
|
|
||||||
print load_fiche_titre($langs->trans("Menus"), '', 'title_setup');
|
|
||||||
|
|
||||||
|
|
||||||
$h = 0;
|
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/menus.php";
|
|
||||||
$head[$h][1] = $langs->trans("MenuHandlers");
|
|
||||||
$head[$h][2] = 'handler';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/menus/index.php";
|
|
||||||
$head[$h][1] = $langs->trans("MenuAdmin");
|
|
||||||
$head[$h][2] = 'editor';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT."/admin/menus/other.php";
|
|
||||||
$head[$h][1] = $langs->trans("Miscellaneous");
|
|
||||||
$head[$h][2] = 'misc';
|
|
||||||
$h++;
|
|
||||||
|
|
||||||
print dol_get_fiche_head($head, 'misc', '', -1);
|
|
||||||
|
|
||||||
|
|
||||||
// Other Options
|
|
||||||
|
|
||||||
print '<table class="noborder centpercent">';
|
|
||||||
print '<tr class="liste_titre">';
|
|
||||||
print '<td colspan="3">'.$langs->trans("Parameters").'</td>';
|
|
||||||
print '<td class="center" width="80">'.$langs->trans("Status").'</td>';
|
|
||||||
print '</tr>';
|
|
||||||
|
|
||||||
// Hide unauthorized menu
|
|
||||||
print '<tr class="oddeven">';
|
|
||||||
print '<td colspan="3">'.$langs->trans("HideUnauthorizedMenu").'</td>';
|
|
||||||
print '<td class="center">';
|
|
||||||
if (empty($conf->global->MAIN_MENU_HIDE_UNAUTHORIZED))
|
|
||||||
{
|
|
||||||
print '<a href="'.$_SERVER["PHP_SELF"].'?action=activate_hidemenu">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
|
|
||||||
} else {
|
|
||||||
print '<a href="'.$_SERVER["PHP_SELF"].'?action=disable_hidemenu">'.img_picto($langs->trans("Enabled"), 'switch_on').'</a>';
|
|
||||||
}
|
|
||||||
print "</td>";
|
|
||||||
print '</tr>';
|
|
||||||
|
|
||||||
print '</table>';
|
|
||||||
|
|
||||||
// End of page
|
|
||||||
llxFooter();
|
|
||||||
$db->close();
|
|
||||||
Reference in New Issue
Block a user