|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="<?php echo $cfg_soft_lang; ?>">
- <title>栏目管理</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/font-awesome/css/font-awesome.min.css">
- <link rel="stylesheet" href="css/base.css">
- <script src="js/global.js"></script>
- <script src="js/context_menu.js"></script>
- <script src="js/ieemu.js"></script>
- <script src="js/dialog.js"></script>
- <script src="../static/js/dedeajax2.js"></script>
- <script>
- function LoadSuns(ctid,tid)
- {
- if($DE(ctid).innerHTML.length < 10){
- $DE('img'+tid).src = 'images/dedecontract.gif';
- var myajax = new DedeAjax($DE(ctid));
- myajax.SendGet('catalog_do.php?dopost=GetSunLists&cid='+tid);
- } else {
- showHide(ctid,tid);
- }
- }
- function showHide(objname,tid)
- {
- if($DE(objname).style.display=="none")
- {
- $DE('img'+tid).src = 'images/dedecontract.gif';
- $DE(objname).style.display = BROWSER.firefox? "" : "block";
- } else {
- $DE('img'+tid).src = 'images/dedeexplode.gif';
- $DE(objname).style.display="none";
- }
- }
- if(moz) {
- extendEventObject();
- extendElementModel();
- emulateAttachEvent();
- }
- //普通栏目
- function CommonMenu(eobj,obj,tid,tname)
- {
- var popupoptions
- popupoptions = [
- new ContextItem("增加内容",function(){location="catalog_do.php?cid="+tid+"&dopost=addArchives";}),
- new ContextItem("管理内容",function(){location="catalog_do.php?cid="+tid+"&dopost=listArchives";}),
- new ContextSeperator(),
- new ContextItem("预览分类",function(){ window.open("<?php echo $cfg_phpurl; ?>/list.php?tid="+tid); }),
- new ContextItem("更新HTML",function(){ location="makehtml_list.php?cid="+tid; }),
- new ContextItem("获取JS文件",function(){ location="catalog_do.php?cid="+tid+"&dopost=GetJs"; }),
- new ContextSeperator(),
- new ContextItem("增加子类",function(){location="catalog_add.php?id="+tid;}),
- new ContextItem("修改栏目",function(){location="catalog_edit.php?id="+tid;}),
- new ContextSeperator(),
- new ContextItem("合并栏目",function(){location='catalog_do.php?dopost=unitCatalog&typeid='+tid}),
- new ContextItem("移动栏目",function(){location='catalog_do.php?dopost=moveCatalog&typeid='+tid}),
- new ContextItem("删除栏目",function(){location="catalog_del.php?id="+tid+"&typeoldname="+tname;}),
- new ContextSeperator(),
- new ContextItem("向上排前一级",function(){ location="catalog_do.php?cid="+tid+"&dopost=upRank"; }),
- new ContextItem("关闭菜单(C)",function(){})
- ]
- ContextMenu.display(eobj,popupoptions)
- }
- //封面模板
- function CommonMenuPart(eobj,obj,tid,tname)
- {
- var popupoptions
- popupoptions = [
- new ContextItem("管理内容",function(){location="catalog_do.php?cid="+tid+"&dopost=listArchives";}),
- new ContextSeperator(),
- new ContextItem("预览分类",function(){ window.open("<?php echo $cfg_phpurl; ?>/list.php?tid="+tid); }),
- new ContextItem("更新HTML",function(){ location="makehtml_list.php?cid="+tid; }),
- new ContextItem("获取JS文件",function(){ location="catalog_do.php?cid="+tid+"&dopost=GetJs"; }),
- new ContextSeperator(),
- new ContextItem("增加子类",function(){location="catalog_add.php?id="+tid;}),
- new ContextItem("修改栏目",function(){location="catalog_edit.php?id="+tid;}),
- new ContextSeperator(),
- new ContextItem("移动栏目",function(){location='catalog_move.php?job=movelist&typeid='+tid}),
- new ContextItem("删除栏目",function(){location="catalog_del.php?id="+tid+"&typeoldname="+tname;}),
- new ContextSeperator(),
- new ContextItem("向上排前一级",function(){ location="catalog_do.php?cid="+tid+"&dopost=upRank"; }),
- new ContextItem("关闭菜单(C)",function(){})
- ]
- ContextMenu.display(eobj,popupoptions)
- }
- //跳转栏目
- function SingleMenu(eobj,obj,tid,tname)
- {
- var popupoptions
- popupoptions = [
- new ContextItem("修改栏目",function(){location="catalog_edit.php?id="+tid;}),
- new ContextSeperator(),
- new ContextItem("移动栏目",function(){location='catalog_move.php?job=movelist&typeid='+tid}),
- new ContextItem("删除栏目",function(){location="catalog_del.php?id="+tid+"&typeoldname="+tname;}),
- new ContextSeperator(),
- new ContextItem("向上排前一级",function(){ window.location="catalog_do.php?cid="+tid+"&dopost=upRank"; }),
- new ContextItem("关闭菜单(C)",function(){})
- ]
- ContextMenu.display(eobj,popupoptions)
- }
- </script>
- <style>
- td,th{padding:.25rem}
- .coolbg2{border:1px solid #ccc;background-color:#F2F5E9;height:18px}
- .coolbt2{border-left:2px solid #EFEFEF;border-top:2px solid #EFEFEF;border-right:2px solid #ACACAC;border-bottom:2px solid #ACACAC;background-color:#F7FCDA}
- .nbline{border-bottom:1px solid #d6d6d6;background-color:#FFFFFF}
- .bline2{border-bottom:1px solid #d6d6d6;background-color:#F9FCEF}
- .maintable{border:1px solid #DEE2E6}
- .btn+.btn{margin-left:10px}
- </style>
- </head>
- <body background="images/allbg.gif" leftmargin="8" topmargin="8" onLoad="ContextMenu.intializeContextMenu()">
- <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" align="center" class="maintable mt-3">
- <tr>
- <td height="26" background="images/tbg.gif">
- <span style="float:left;padding-left:10px;line-height:26px" class="py-3">
- <strong>网站栏目管理</strong>
- </span>
- <span style="float:right;padding-right:10px" class="py-3">
- <a href="catalog_add.php?listtype=all" class="btn btn-success btn-sm">增加顶级栏目</a>
- <a href="catalog_add.php?dopost=quick" class="btn btn-success btn-sm">批量增加栏目</a>
- <a href="catalog_do.php?dopost=upcatcache" class="btn btn-success btn-sm">更新栏目缓存</a>
- <a href="makehtml_list.php" class="btn btn-success btn-sm">更新栏目</a></a>
- </span>
- </td>
- </tr>
- <tr>
- <td height="26" bgcolor="#ffffff">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50%" style="padding-left:10px;line-height:26px">提示:可使用右键菜单进行操作</td>
- <td width="50%" style="padding-right:10px" align="right">
- <?php if(!isset($exallct)) { ?>
- <a href="catalog_main.php?exallct=all" class="btn btn-success btn-sm">展开全部</a>
- <?php } else { ?>
- <a href="catalog_main.php" class="btn btn-success btn-sm">普通模式</a>
- <?php } ?>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <form name="form1" method="post" action="catalog_do.php?dopost=upRankAll">
- <tr>
- <td bgcolor="#FFFFFF" valign="top">
- <?php
- if(empty($opendir)) $opendir=-1;
- if($userChannel>0) $opendir=$userChannel;
- $tu = new TypeUnit();
- $tu->ListAllType($userChannel,$opendir);
- ?>
- </td>
- </tr>
- </form>
- <tr>
- <td height="36" bgcolor="#FFFFFF" align="right" class="py-3" style="padding-right:10px">
- <button type="button" name="sb1" class="btn btn-success btn-sm" onClick="document.form1.submit();">更新排序</button>
- <button type="button" name="sb4" class="btn btn-success btn-sm" onClick="location='makehtml_js.php';">更新脚本</button>
- <button type="button" name="sb2" class="btn btn-success btn-sm" onClick="location='makehtml_list.php';">更新栏目</button>
- <button type="button" name="sb3" class="btn btn-success btn-sm" onClick="location='makehtml_archives.php';">更新文档</button>
- </td>
- </tr>
- </table>
- </body>
- </html>
|