go.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: go.php,v $
  15. // | $Date: 2004/02/10 01:34:28 $
  16. // | $Revision: 1.6 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Redirector for home page selections
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. include "./../global.php";
  23. // globalise variables
  24. $global = array (
  25. array('id')
  26. );
  27. rg($global);
  28. if ($_REQUEST['own_tickets_submit']) {
  29. $url = $_REQUEST['own_ticket'];
  30. } elseif ($_REQUEST['other_tickets_submit']) {
  31. $url = $_REQUEST['other_ticket'];
  32. } elseif ($_REQUEST['new_tickets_submit']) {
  33. $url = $_REQUEST['new_ticket'];
  34. } elseif ($_REQUEST['messages_submit']) {
  35. $url = $_REQUEST['messages'];
  36. } elseif ($_REQUEST['watches_submit']) {
  37. $url = $_REQUEST['watches'];
  38. } elseif ($_REQUEST['odwatches_submit']) {
  39. $url = $_REQUEST['odwatches'];
  40. } elseif ($_REQUEST['tasks_submit']) {
  41. $url = $_REQUEST['tasks'];
  42. } elseif ($_REQUEST['odtasks_submit']) {
  43. $url = $_REQUEST['odtasks'];
  44. } elseif ($_REQUEST['faqs_submit']) {
  45. $url = $_REQUEST['faqs'];
  46. } elseif ($_REQUEST['run_saved']) {
  47. $url = $_REQUEST['saved_search'] . "&save_search_op=Run";
  48. }
  49. if (!$url) {
  50. $url = 'main.php';
  51. $message = 'Nothing selected.';
  52. } else {
  53. $message = 'Viewing selection...';
  54. }
  55. jump($url, $message);