国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <title><?php echo $cfg_webname; ?>后台管理</title>
  6. <link rel="stylesheet" href="css/frame.css">
  7. <link rel="stylesheet" href="images/style<?php echo $cfg_admin_skin;?>/style.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");background-repeat: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 href="#" onclick="JumpFrame('index_menu.php','index_body.php');"><?php echo $cfg_webname; ?>系统</a></div>
  39. <div class="top_version"><?php echo $cfg_version_detail; ?></div>
  40. <div class="top_link">
  41. <ul>
  42. <li class="welcome"><img src="/static/img/avatar.png" title="<?php echo $cuserLogin->getUserName(); ?>"><?php echo $cuserLogin->getUserName(); ?><a href="exit.php" target="_top">注销</a></li>
  43. <li><a href="#" onclick="JumpFrame('catalog_menu.php','public_guide.php');">发布文档</a></li>
  44. <li><a href="#" onclick="JumpFrame('index_menu.php','content_list.php');">所有文档</a></li>
  45. <li><a href="#" onclick="JumpFrame('index_menu.php','catalog_main.php');">栏目管理</a></li>
  46. <li><a href="#" onclick="JumpFrame('index_menu.php','file_manage_main.php');">文件管理</a></li>
  47. <li><a href="#" onclick="JumpFrame('index_menu.php','templets_main.php');">模板管理</a></li>
  48. <?php echo ($cfg_mb_open == 'Y')?'<li><a href="../member" target="_blank">会员中心</a></li>':''; ?>
  49. <li><a href="../index.php?upcache=1" target="_blank">网站主页</a></li>
  50. </ul>
  51. </div>
  52. </div>
  53. <div class="topnav">
  54. <div class="menuact"><a href="#" id="togglemenu">隐藏菜单</a>
  55. <?php
  56. if($cuserLogin->getUserType() >= 10) echo '<a href="#" id="allmenu">功能地图</a>';
  57. ?>
  58. </div>
  59. <div id="skin"></div>
  60. </div>
  61. <div class="nav" id="nav"></div>
  62. <div class="sysmsg">
  63. <h3>滚动消息:</h3>
  64. <div class="scroll">
  65. <form action="action_search.php" target="main" method="post">
  66. <input name="keyword" type="text" value="功能搜索" onfocus="if(this.value=='功能搜索'){this.value='';}" onblur="if(this.value==''){this.value='功能搜索';}" class="allsearch">
  67. <input name="" type="submit" value="搜索" class="np">
  68. <a href='<?php echo $cfg_biz_gitUrl;?>' target='_blank'>代码托管</a> <a href='<?php echo $cfg_biz_helpUrl;?>' target='_blank'>帮助中心</a>
  69. </form>
  70. </div>
  71. </div>
  72. </div>
  73. <div class="left">
  74. <div class="menu" id="menu">
  75. <iframe src="index_menu.php" id="menufra" name="menu" frameborder="0"></iframe>
  76. </div>
  77. </div>
  78. <div class="right">
  79. <div class="main">
  80. <iframe id="main" name="main" frameborder="0" src="index_body.php"></iframe>
  81. </div>
  82. </div>
  83. <div class="qucikmenu" id="qucikmenu">
  84. <ul>
  85. <?php
  86. $dtp = new DedeTagparse();
  87. $dtp->SetNameSpace('menu','<','>');
  88. $dtp->LoadTemplet($myIcoFile);
  89. if(is_array($dtp->CTags))
  90. {
  91. foreach($dtp->CTags as $ctag)
  92. {
  93. $title = $ctag->GetAtt('title');
  94. $ico = $ctag->GetAtt('ico');
  95. $link = $ctag->GetAtt('link');
  96. echo "<li><a href='{$link}' target='main'>{$title}</a></li>\r\n";
  97. }
  98. }
  99. ?>
  100. </ul>
  101. </div>
  102. <script language="javascript">
  103. function JumpFrame(url1, url2) {
  104. jQuery('#menufra').get(0).src = url1;
  105. jQuery('#main').get(0).src = url2;
  106. }
  107. (function ($) {
  108. $("#skinlist>li").click(function () {
  109. var adminskin = $(this).index() + 1;
  110. var csshref = "images/style" + adminskin + "/style.css";
  111. $("#skinlist>li").each(function () { $(this).children('div').attr('class', '') });
  112. $("#topdedelogo").attr('src', 'images/style' + adminskin + '/admin_top_logo.gif')
  113. $('link').each(function () {
  114. if ($(this).attr('href').match(/style.css$/)) {
  115. $(this).attr('href', csshref);
  116. }
  117. });
  118. $(this).children('div').attr('class', 'sel');
  119. $(window.frames["menu"].document).find("link").each(function () {
  120. if ($(this).attr('href').match(/style.css$/)) {
  121. $(this).attr('href', csshref);
  122. }
  123. });
  124. $(window.frames["main"].document).find("link").each(function () {
  125. if ($(this).attr('href').match(/style.css$/)) {
  126. $(this).attr('href', csshref);
  127. }
  128. });
  129. $.get('index_body.php?dopost=setskin&cskin=' + adminskin);
  130. });
  131. })(jQuery);
  132. </script>
  133. </body>
  134. </html>