dolibarr/htdocs/admin/tools/index.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2006-08-20 21:15:47 +02:00
<?php
2012-08-02 10:07:55 +02:00
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr>
2006-08-20 21:15:47 +02: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 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
2011-08-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2006-08-20 21:15:47 +02:00
*/
/**
2009-07-26 13:19:11 +02:00
* \file htdocs/admin/tools/index.php
* \brief Page d'accueil de l'espace outils admin
*/
2006-08-20 21:15:47 +02:00
require '../../main.inc.php';
2006-08-20 21:15:47 +02:00
$langs->load("admin");
$langs->load("companies");
2012-08-02 10:07:55 +02:00
if (! $user->admin)
accessforbidden();
2006-08-20 21:15:47 +02:00
/*
2009-07-26 13:19:11 +02:00
* View
2006-08-20 21:15:47 +02:00
*/
llxHeader();
$form = new Form($db);
print_fiche_titre($langs->trans("SystemToolsArea"),'','setup');
2006-12-09 00:35:28 +01:00
print $langs->trans("SystemToolsAreaDesc").'<br>';
print "<br>";
2006-12-09 00:35:28 +01:00
print info_admin($langs->trans("SystemAreaForAdminOnly")).'<br>';
2006-08-20 21:15:47 +02:00
llxFooter();
2012-08-02 10:07:55 +02:00
$db->close();
?>