2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/admin/system/pre.inc.php
Laurent Destailleur 6f64fd83f2 Look: Ajout picto "setup" sur toutes les pages de configuration
Qual: Suppression de fichiers obsoletes
Ajout d'une page introduction a la configuration Dolibarr.
2006-08-12 15:32:57 +00:00

72 lines
2.6 KiB
PHP

<?php
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*/
/**
\file htdocs/admin/system/pre.inc.php
\brief Fichier gestionnaire menu page infos système
\version $Revision$
*/
require("../../main.inc.php");
function llxHeader($head = "", $urlp = "")
{
global $langs;
$langs->load("admin");
top_menu($head);
$menu = new Menu();
$menu->add(DOL_URL_ROOT."/admin/system/index.php", $langs->trans("Summary"));
// Dolibarr
$menu->add(DOL_URL_ROOT."/admin/system/dolibarr.php", "Dolibarr");
$menu->add_submenu(DOL_URL_ROOT."/admin/system/constall.php", $langs->trans("AllParameters"));
$menu->add_submenu(DOL_URL_ROOT."/about.php", $langs->trans("About"));
// OS
$menu->add(DOL_URL_ROOT."/admin/system/os.php", $langs->trans("OS"));
// Web server
$menu->add(DOL_URL_ROOT."/admin/system/web.php", $langs->trans("WebServer"));
// PHP
$menu->add(DOL_URL_ROOT."/admin/system/phpinfo.php", $langs->trans("Php"));
$menu->add_submenu(DOL_URL_ROOT."/admin/system/phpinfo.php?what=conf", $langs->trans("PhpConf"));
$menu->add_submenu(DOL_URL_ROOT."/admin/system/phpinfo.php?what=env", $langs->trans("PhpEnv"));
$menu->add_submenu(DOL_URL_ROOT."/admin/system/phpinfo.php?what=modules", $langs->trans("PhpModules"));
// Database
$menu->add(DOL_URL_ROOT."/admin/system/database.php", $langs->trans("Database"));
$menu->add_submenu(DOL_URL_ROOT."/admin/system/database-tables.php", $langs->trans("Tables"));
$menu->add_submenu(DOL_URL_ROOT."/admin/system/database-tables-contraintes.php", $langs->trans("Constraints"));
left_menu($menu->liste);
}
?>