<?php
/************************************************************************/
/* TTS: Ticket tracking system */
/* ============================================ */
/* */
/* Copyright (c) 2002 by Meir Michanie */
/* http://www.riunx.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 2 of the License. */
/************************************************************************/
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("modules/$name/classes.php");
require_once("modules/$name/configure.php");
if ($full_screen) include("modules/$name/themes/$hlpdsk_theme/header.php"); else include("header.php");
require_once("modules/$name/language/lang-$language.php");
Opentts::menu("Stat");
OpenTable();
if(Security::is_action_allowed("admin")){
echo "<center><font class=content>". Opentts::status_stat()."</center>";
echo "<br>";
echo "<center><font class=content>". Opentts::cat_stat()."</center>";
echo "<br>";
echo "<center><font class=content>". Opentts::cat_status_stat()."</center>";
}
CloseTable();
?>