国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
4.9KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta name="robots" content="noindex,nofollow">
  6. <title><?php echo $cfg_webname; ?>后台管理</title>
  7. <link rel="stylesheet" href="css/frame.css">
  8. <script src="../static/js/jquery.js"></script>
  9. <script src="js/frame.js"></script>
  10. <style>
  11. #skinlist{display:block;height:10px;margin-top:10px;overflow:hidden;width:86px}
  12. #skin div{float:left}
  13. #skin li{float:left;width:14px;height:10px;cursor:pointer}
  14. #def div,#s1 div,#s2 div,#s3 div,#s4 div{background-image:url(images/skinbutton.png)no-repeat}
  15. #s1 div{background-position:0 0px}
  16. #s2 div{background-position:0 -11px}
  17. #s3 div{background-position:0 -22px}
  18. #s4 div{background-position:0 -33px}
  19. #s1 div.sel{background:url(images/skinbutton.png)no-repeat scroll -14px top transparent}
  20. #s2 div.sel{background:url(images/skinbutton.png)no-repeat scroll -14px -11px transparent}
  21. #s3 div.sel{background:url(images/skinbutton.png)no-repeat scroll -14px -22px transparent}
  22. #s4 div.sel{background:url(images/skinbutton.png)no-repeat scroll -14px -33px transparent}
  23. </style>
  24. </head>
  25. <body class="showmenu">
  26. <div class="pagemask"></div>
  27. <iframe class="iframemask"></iframe>
  28. <div class="allmenu">
  29. <div class="allmenu-box">
  30. <?php
  31. echo $mapstring;
  32. ?>
  33. <br style="clear:both">
  34. </div>
  35. </div>
  36. <div class="head">
  37. <div class="top">
  38. <div class="top_logo"><a target="main" href="index_body.php"><?php echo $cfg_webname; ?>系统</a></div>
  39. <div class="top_version">V<?php echo $cfg_version_detail; ?></div>
  40. <div class="top_link">
  41. <ul>
  42. <li class="welcome">
  43. <a target="main" href="sys_admin_user_edit.php?id=<?php echo $cuserLogin->getUserID(); ?>&dopost=edit"><img src="../static/img/avatar.png" title="<?php echo $cuserLogin->getUserName(); ?>"><?php echo $cuserLogin->getUserName(); ?></a>
  44. <a href="exit.php">退出</a>
  45. </li>
  46. <?php
  47. if($cuserLogin->getUserType()>=10){
  48. ?>
  49. <li><a target="main" href="sys_info.php">系统配置</a></li>
  50. <li><a target="main" href="catalog_main.php">栏目管理</a></li>
  51. <li><a target="main" href="file_manage_main.php">文件管理</a></li>
  52. <li><a target="main" href="templets_main.php">模板管理</a></li>
  53. <?php
  54. }
  55. ?>
  56. <li><a target="main" href="public_guide.php">发布文档</a></li>
  57. <li><a target="main" href="makehtml_all.php">更新整站</a></li>
  58. <?php echo ($cfg_mb_open=='Y')?'<li><a href="../user" target="_blank">会员中心</a></li>':''; ?>
  59. <li><a href="../index.php?upcache=1" target="_blank">网站主页</a></li>
  60. </ul>
  61. </div>
  62. </div>
  63. <div class="topnav">
  64. <div class="menuact">
  65. <a href="javascript:;" id="togglemenu">隐藏菜单</a>
  66. <a href="javascript:;" id="allmenu">功能地图</a>
  67. </div>
  68. <div id="skin"></div>
  69. <div class="nav" id="nav"></div>
  70. <div class="sysmsg">
  71. <div class="scroll">
  72. <form action="action_search.php" method="post" target="main">
  73. <input type="text" name="keyword" placeholder="功能搜索" class="allsearch">
  74. <button type="submit" class="np">搜索</button>
  75. <a href="<?php echo $cfg_biz_gitUrl; ?>" target="_blank">代码托管</a>
  76. <a href="<?php echo $cfg_biz_helpUrl; ?>" target="_blank">帮助中心</a>
  77. </form>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. <div class="left">
  83. <div class="menu" id="menu">
  84. <iframe src="index_menu.php" id="menufra" name="menu" frameborder="0"></iframe>
  85. </div>
  86. </div>
  87. <div class="right">
  88. <div class="main">
  89. <iframe src="index_body.php" id="main" name="main" frameborder="0"></iframe>
  90. </div>
  91. </div>
  92. <div class="qucikmenu" id="qucikmenu">
  93. <ul>
  94. <?php
  95. $dtp = new DedeTagparse();
  96. $dtp->SetNameSpace('menu','<','>');
  97. $dtp->LoadTemplet($myIcoFile);
  98. if(is_array($dtp->CTags))
  99. {
  100. foreach($dtp->CTags as $ctag)
  101. {
  102. $title = $ctag->GetAtt('title');
  103. $ico = $ctag->GetAtt('ico');
  104. $link = $ctag->GetAtt('link');
  105. echo "<li><a target='main' href='{$link}'>{$title}</a></li>";
  106. }
  107. }
  108. ?>
  109. </ul>
  110. </div>
  111. <script>
  112. function JumpFrame(url1, url2) {
  113. jQuery('#menufra').get(0).src = url1;
  114. jQuery('#main').get(0).src = url2;
  115. }
  116. </script>
  117. </body>
  118. </html>