go.php
来自「本代码是为客户联系管理而做的系统」· PHP 代码 · 共 62 行
PHP
62 行
<?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: go.php,v $
// | $Date: 2004/02/10 01:34:28 $
// | $Revision: 1.6 $
// +-------------------------------------------------------------+
// | File Details:
// | - Redirector for home page selections
// +-------------------------------------------------------------+
error_reporting(E_ALL ^ E_NOTICE);
include "./../global.php";
// globalise variables
$global = array (
array('id')
);
rg($global);
if ($_REQUEST['own_tickets_submit']) {
$url = $_REQUEST['own_ticket'];
} elseif ($_REQUEST['other_tickets_submit']) {
$url = $_REQUEST['other_ticket'];
} elseif ($_REQUEST['new_tickets_submit']) {
$url = $_REQUEST['new_ticket'];
} elseif ($_REQUEST['messages_submit']) {
$url = $_REQUEST['messages'];
} elseif ($_REQUEST['watches_submit']) {
$url = $_REQUEST['watches'];
} elseif ($_REQUEST['odwatches_submit']) {
$url = $_REQUEST['odwatches'];
} elseif ($_REQUEST['tasks_submit']) {
$url = $_REQUEST['tasks'];
} elseif ($_REQUEST['odtasks_submit']) {
$url = $_REQUEST['odtasks'];
} elseif ($_REQUEST['faqs_submit']) {
$url = $_REQUEST['faqs'];
} elseif ($_REQUEST['run_saved']) {
$url = $_REQUEST['saved_search'] . "&save_search_op=Run";
}
if (!$url) {
$url = 'main.php';
$message = 'Nothing selected.';
} else {
$message = 'Viewing selection...';
}
jump($url, $message);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?