/usr/share/grr/admin_accueil.php is in grr 2.2~dfsg2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <?php
/**
* admin_accueil
* Interface d'accueil de l'administration des domaines et des ressources
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2009-02-27 13:28:19 $
* @author Laurent Delineau <laurent.delineau@ac-poitiers.fr>
* @copyright Copyright 2003-2008 Laurent Delineau
* @link http://www.gnu.org/licenses/licenses.html
* @package root
* @version $Id: admin_accueil.php,v 1.4 2009-02-27 13:28:19 grr Exp $
* @filesource
*
* This file is part of GRR.
*
* GRR 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.
*
* GRR 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 GRR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* $Log: admin_accueil.php,v $
* Revision 1.4 2009-02-27 13:28:19 grr
* *** empty log message ***
*
* Revision 1.3 2009-01-20 07:19:16 grr
* *** empty log message ***
*
* Revision 1.2 2008-11-16 22:00:58 grr
* *** empty log message ***
*
* Revision 1.3 2008-11-11 22:01:14 grr
* *** empty log message ***
*
*
*/
include "include/admin.inc.php";
$grr_script_name = "admin_accueil.php";
$back = '';
if (isset($_SERVER['HTTP_REFERER'])) $back = htmlspecialchars($_SERVER['HTTP_REFERER']);
if ((authGetUserLevel(getUserName(),-1,'area') < 4) and (authGetUserLevel(getUserName(),-1,'user') != 1))
{
$day = date("d");
$month = date("m");
$year = date("Y");
showAccessDenied($day, $month, $year, '',$back);
exit();
}
# print the page header
print_header("","","","",$type="with_session", $page="admin");
include "admin_col_gauche.php";
?>
<table><tr><td><img src="img_grr/totem_grr.png" alt="GRR !" class="image" /></td>
<td align="center" ><br /><br /><p style="font-size:20pt"><?php echo get_vocab("admin"); ?> </p><p style="font-size:40pt"><i>GRR !</i></p></td></tr></table>
</td>
</tr>
</table>
</body>
</html>
|