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

电子政务应用

开发平台:

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: index.php,v $
  15. // | $Date: 2004/02/10 01:34:28 $
  16. // | $Revision: 1.26 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Technician home page frame shell.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. include "./../global.php";
  23. reload_index_frameset();
  24. ?>
  25. <html>
  26. <head>
  27. <title>DeskPRO Technician Interface</title>
  28. </head>
  29. <frameset rows="*, 120, 0" id="rowframeset"> <?php
  30. if ($_REQUEST['url']) { 
  31. // First, we can't let users load a few of these supporting files
  32. // directly because they aren't meant to run that way.
  33. $url = parse_url($_REQUEST['url']);
  34. $file = basename($url['path'], '.php');
  35. $noload = array(
  36. 'autoload',
  37. 'cache',
  38. 'quickfind',
  39. 'global'
  40. );
  41. if (in_array($file, $noload)) { // Ignore the request, go back to main page. 
  42. unset($_REQUEST['url']);
  43. } else {
  44. if (!stristr($_REQUEST['url'], '?')) {
  45. $_REQUEST['url'] .= "?";
  46. }
  47. foreach($_GET AS $name => $val) {
  48. $_REQUEST['url'] .= "&$name=$val";
  49. }
  50. }
  51. }
  52. switch ($user['footer']) {
  53. default:
  54. case '1':
  55. $file = 'footer_select.php';
  56. break;
  57. case '2':
  58. $file = 'footer_search.php';
  59. break;
  60. case '4':
  61. $file = '../faq/footer_faq.php';
  62. break;
  63. case '3':
  64. $file = 'footer_tickets.php';
  65. break;
  66. }
  67. if ($_REQUEST['url']) { ?>
  68. <frame name="center" src="<?php echo $_REQUEST['url'] ?>" marginheight="0" marginwidth="0" border="0" topmargin="0" frameborder="No"> <?php
  69. } else { ?>
  70. <frame name="center" src="main.php" marginheight="0" marginwidth="0" border="0" topmargin="0" frameborder="No"> <?php
  71. } ?>
  72. <frameset cols="*, 0, 0">
  73. <frame name="footer" scrolling="NO" marginheight="0" border="0" marginwidth="0" topmargin="0" frameborder="No" noresize src="<?php echo $file; ?>">
  74. <frame name="cache" src="autoload.php" NORESIZE SCROLLING=NO marginheight="0" topmargin="0" marginwidth="0" border="0" frameborder="No">
  75. <frame name="empty" scrolling="no" marginheight="0" border="0" marginwidth="0" topmargin="0" frameborder="No" noresize src="cache.php">
  76. </frameset>
  77. </frameset>
  78. </html>