|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>内容发布向导</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="css/base.css" rel="stylesheet" type="text/css" />
- <script src="../static/js/jquery.js" language="javascript" type="text/javascript"></script>
- <script src="../static/js/bootstrap.bundle.js"></script>
- <script language="javascript" src="js/main.js"></script>
- <style>
- .np { border:0px }
- </style>
- <script language='javascript'>
- var selCheckbox = '';
- function ResetBox(selid)
- {
- var selobj = document.getElementById(selid);
- var preobj = null;
- if(selCheckbox!='') preobj = document.getElementById(selCheckbox);
- if(selobj.checked){
- if(preobj!=null && selid != selCheckbox) preobj.checked = false;
- selCheckbox = selid;
- }else{
- if(selCheckbox == selid) selCheckbox = '';
- }
- }
- function SetDefault()
- {
- if(selCheckbox==''){
- ShowMsg("你没有选中需要设置为默认的栏目!");
- }else{
- var selobj = document.getElementById(selCheckbox);
- location="public_guide.php?action=setdefault&cid="+selobj.value;
- }
- }
- function ResetDefault(){
- location="public_guide.php?action=setdefault&cid=0";
- }
- </script>
- </head>
- <body leftmargin="8" topmargin="8" background='images/allbg.gif'>
- <table width="98%" height="31" border="0" align="center" cellpadding="1" cellspacing="1" class="table maintable table-bordered mt-3" style="border:1px solid #CFCFCF;margin-top:6px;border-bottom:none;">
- <tr>
- <td class="tbtitletxt" background='images/tbg.gif'><strong> 内容发布向导:</strong></td>
- </tr>
- </table>
- <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" style="border:1px solid #CFCFCF;" class="table maintable table-borderless mt-3">
- <tr align="center">
- <td height="120" align="left" valign="top" bgcolor="#FFFFFF" style="padding:6px;padding-bottom:20px">
- <table width="100%" border="0" cellspacing="0" cellpadding="6">
- <tr>
- <td><strong>内容发布说明:</strong><br />
- 1、必须先建立与频道内容模型关连的栏目才能发布内容(<a href="catalog_main.php"><u>栏目管理</u></a>);<br />
- 2、如果您设置了某频道为默认发布表单,以后将不再显示此向导,而是直接显示您所选的频道的发布表单,如果想要发布其它频道的内容,可以从左边的目录树中选择,如果以后您想要修改默认发布表单,请点击目录树上方的“发布向导”图标;</td>
- </tr>
- </table>
- <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" class="table table-bordered">
- <tr height="22" align="center" bgcolor="#FBFCE2">
- <td width="8%" ><strong>选择</strong></td>
- <td width="8%"><strong>频道ID</strong></td>
- <td width="20%"><strong>频道内容模型</strong></td>
- <td width="23%"><strong>附加表</strong></td>
- <td width="10%"><strong>栏目数</strong></td>
- <td><strong>操作选项</strong></td>
- </tr>
- <?php
- $i=0;
- while($row = $dsql->GetArray()){
- $i++;
- $row['mancon'] = ($row['mancon']=='' ? 'content_list.php?channelid='.$row['id'] : $row['mancon'].'?channelid='.$row['id']);
- $checkbox = ($row['isdefault']==0 ? '' : ' checked');
- if($checkbox!=''){
- echo "<script language='javascript'>selCheckbox='cid{$i}';</script>\r\n";
- }
- $catnum = GetCatalogs($dsql,$row['id']);
- ?>
- <tr align="center" bgcolor="#FFFFFF" height="20" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
- <td><input type="checkbox" name="cid<?php echo $i; ?>" id="cid<?php echo $i; ?>" onClick="ResetBox('cid<?php echo $i; ?>')" value="<?php echo $row['id']; ?>" class="np" <?php echo $checkbox; ?>/></td>
- <td><?php echo $row['id']; ?></td>
- <td><?php echo $row['typename']; ?></td>
- <td><?php echo $row['addtable']; ?></td>
- <td><?php echo $catnum; ?></td>
- <td>
- <a href="catalog_main.php" class="btn btn-secondary btn-sm">管理栏目</a>
- <?php
- if($catnum>0){
- ?>
- <a href="<?php echo $row['mancon']; ?>" class="btn btn-secondary btn-sm">管理内容</a>
- <a href="catalog_do.php?channelid=<?php echo $row['id'];?>&cid=0&dopost=addArchives" class="btn btn-secondary btn-sm">发布内容</a>
- <?php }else{ ?>
- |
- <font color='#cccccc'>管理内容</font>
- |
- <font color='#cccccc'>发布内容</font>
- <?php } ?>
- </td>
- </tr>
- <?php
- }
- ?>
- </table>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <button name="b1" type="button" id="b1" onClick="SetDefault()" class="btn btn-secondary btn-sm">把所选的频道表单设为默认表单</button>
-
- <button name="b2" type="button" id="b2" onClick="ResetDefault()" class="btn btn-secondary btn-sm">取消默认表单</button>
- </td>
- </tr>
- </table></td>
- </tr>
- </table>
- <div align="center"> </div>
- </body>
- </html>
|