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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
<?php
/* OpenDb - Open Media Lending Database
Copyright (C) 2001,2002 by Jason Pell
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.
*/
// This must be first - includes config.php
require_once("./include/begin.inc.php");
include_once("./include/language.php");
include_once("./include/theme.php");
include_once("./functions/database.php");
include_once("./functions/auth.php");
include_once("./functions/logging.php");
include_once("./functions/utils.php");
include_once("./functions/parseutils.php");
include_once("./functions/widgets.php");
include_once("./functions/admin.php");
include_once("./functions/listutils.php");
function display_menu_header($type=NULL)
{
$admin_tools = get_admin_tools_r();
echo("<div align=left><table width=800 border=0><tr><td align=center>");
while(list(,$tool) = each($admin_tools))
{
$tool_config_r = get_admin_config_r($tool);
if(strcmp($type,$tool)!=0)
{
echo(" <a href=\"admin.php?type=$tool\">");
if(file_exists("./admin/$tool/icon.gif"))
echo("<img src=\"admin/$tool/icon.gif\" border=0 valign=absmiddle align=absmiddle title=\"".$tool_config_r['type_description']."\">");
else
echo($tool_config_r['menu_link_name']);
echo("</a>");
}
}
echo("</td></tr></table></div>");
}
if($CONFIG_VARS['site.enable']!==FALSE)
{
// This check will also be performed in each site plugin, but who cares!
session_start();
if(is_opendb_valid_session())
{
if(is_user_admin($HTTP_SESSION_VARS['user_id'], $HTTP_SESSION_VARS['user_type']))
{
if(strlen($HTTP_VARS['type'])==0 && $HTTP_VARS['op']== 'errmsg' && strlen($HTTP_VARS['title'])>0 && strlen($HTTP_VARS['error'])>0)
{
echo _theme_header($HTTP_VARS['title'],FALSE);
echo("<h2>".$HTTP_VARS['title']."</h2>");
echo urldecode($HTTP_VARS['error']);
}
else if(is_legal_admin_type($HTTP_VARS['type']))
{
if(file_exists("./admin/".$HTTP_VARS['type']."/config.php"))
{
include("admin/".$HTTP_VARS[type]."/config.php");
}
if($HTTP_VARS['inc_theme'] != 'N' && $HTTP_VARS['inc_header'] != 'N')
{
echo _theme_header('System Admin Tools - '.$type_description, $HTTP_VARS['inc_menu']);
// The printable theme handles the call to _theme_header,
// so it should be included.
if ($HTTP_VARS['mode'] != 'printable')
{
display_menu_header($HTTP_VARS['type']);
echo("<h2>");
if(file_exists("./admin/".$HTTP_VARS['type']."/icon.gif"))
echo("<img src=\"admin/".$HTTP_VARS['type']."/icon.gif\" border=0 valign=absmiddle align=absmiddle title=\"".$type_description."\"> ");
echo($type_description);
echo("</h2>");
}
}
// Declare so it can be used within child scripts.
$ADMIN_TYPE = $HTTP_VARS['type'];
if(file_exists("./admin/".$HTTP_VARS['type']."/functions.php"))
{
include("./admin/".$HTTP_VARS['type']."/functions.php");
}
include("./admin/".$HTTP_VARS['type']."/index.php");
}
else if(strlen($HTTP_VARS['type'])>0)
{
echo _theme_header("Illegal Type specified");
display_menu_header();
echo _theme_error("Illegal Type specified");
}
else
{
echo _theme_header("OpenDb Administrator");
display_menu_header();
}
}
else //not an administrator or own user.
{
echo _theme_header($LANG_VARS['not_authorized_to_page']);
echo _theme_error($LANG_VARS['not_authorized_to_page']);
}
if($HTTP_VARS['inc_theme'] != 'N' && $HTTP_VARS['inc_footer'] != 'N')
{
echo _theme_footer();
}
}
else//not a valid session.
{
// invalid login, so login instead.
include("./login.php");
}
}//if($CONFIG_VARS['site.enable']!==FALSE)
else
{
echo _theme_header($LANG_VARS['site_is_disabled'], FALSE);
echo _theme_error($LANG_VARS['site_is_disabled']);
echo _theme_footer();
}
// Cleanup after begin.inc.php
require_once("./include/end.inc.php");
?>
|