jsp程序开发系统
源代码在线查看: style.php
// +-------------------------------------------------------------+
// | DeskPRO v [2.0.1 Production]
// | Copyright (C) 2001 - 2004 Headstart Solutions Limited
// | Supplied by WTN-WDYL
// | Nullified by WTN-WDYL
// | Distribution via WebForum, ForumRU and associated file dumps
// +-------------------------------------------------------------+
// | DESKPRO IS NOT FREE SOFTWARE
// +-------------------------------------------------------------+
// | License ID : Full Enterprise License =) ...
// | License Owner : WTN-WDYL Team
// +-------------------------------------------------------------+
// | $RCSfile: style.php,v $
// | $Date: 2004/02/10 01:34:25 $
// | $Revision: 1.5 $
// +-------------------------------------------------------------+
// | File Details:
// | - Change the deskpro style
// +-------------------------------------------------------------+
error_reporting(E_ALL & ~E_NOTICE);
include("./global.php");
// default do
$_REQUEST['do'] = trim($_REQUEST['do']);
if (!isset($_REQUEST['do']) or $_REQUEST['do'] == "") {
$_REQUEST['do'] = "list";
}
include('./settings_include.php');
if ($_REQUEST['do'] == "update") {
update_settings();
alert('Settings Updated');
$_REQUEST['do'] = "list";
}
if ($_REQUEST['do'] == "list") {
admin_header('The Style', 'Edit Settings');
show_settings('style.php', 'Styles', 0);
}