|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>修改栏目</title>
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script src="../static/web/js/jquery.min.js"></script>
- <script src="js/main.js"></script>
- <script>
- var channelArray = new Array();
- <?php
- $i = 0;
- foreach($channelArray as $k=> $arr)
- {
- echo "channelArray[$k] = \"{$arr['nid']}\";";
- }
- ?>
- function Nav() {
- if (window.navigator.userAgent.indexOf("MSIE") >= 1) return 'IE';
- else if (window.navigator.userAgent.indexOf("Firefox") >= 1) return 'FF';
- else return "OT";
- }
- function SelectTemplets(fname) {
- var pos = GetWinPos(800,600);
- window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top);
- }
- function ShowHide(objname) {
- var obj = document.getElementById(objname);
- if (obj.style.display != "none")
- obj.style.display = "none";
- else {
- if (Nav() == 'IE') obj.style.display = "block";
- else obj.style.display = "block";
- }
- }
- function ShowObj(objname) {
- var obj = document.getElementById(objname);
- if (Nav() == 'IE') obj.style.display = "block";
- else obj.style.display = "block";
- }
- function HideObj(objname) {
- var obj = document.getElementById(objname);
- obj.style.display = "none";
- }
- function CheckTypeDir() {
- var upinyin = document.getElementById('upinyin');
- var tpobj = document.getElementById('typedir');
- if (upinyin.checked) tpobj.style.display = "none";
- else tpobj.style.display = "inline-block";
- }
- function ParTemplet(obj) {
- var sevvalue = channelArray[obj.value];
- var tobj = document.getElementById('smclass');
- var tempindex = document.getElementsByName('tempindex');
- var templist = document.getElementsByName('templist');
- var temparticle = document.getElementsByName('temparticle');
- var dfstyle = document.getElementsByName('dfstyle');
- var dfstyleValue = dfstyle[0].value;
- tempindex[0].value = dfstyleValue + "/index_" + sevvalue + ".htm";
- templist[0].value = dfstyleValue + "/list_" + sevvalue + ".htm";
- temparticle[0].value = dfstyleValue + "/article_" + sevvalue + ".htm";
- if (obj.value < 0) {
- if (Nav() == 'IE') tobj.style.display = "block";
- else tobj.style.display = "block";
- } else {
- tobj.style.display = "none";
- }
- }
- function checkSubmit() {
- if (document.form1.typename.value == "") {
- alert("栏目名称不能为空");
- document.form1.typename.focus();
- return false;
- }
- return true;
- }
- function CheckCross() {
- var cross2 = document.getElementById('cross2');
- var crossid = document.getElementById('crossid');
- if (cross2.checked) crossid.style.display = 'block';
- else crossid.style.display = 'none';
- }
- function makeAPIKey(){
- var apikey = document.getElementById('apikey');
- jQuery.get("sys_info.php?dopost=make_encode", function(data) {
- jQuery("#apikey").val(data);
- });
- }
- </script>
- </head>
- <body>
- <form name="form1" action="catalog_edit.php" method="post" onSubmit="return checkSubmit()">
- <input type="hidden" name="dopost" value="save">
- <input type="hidden" name="id" value="<?php echo $id;?>">
- <input type="hidden" name="topid" value="<?php echo $myrow['topid'];?>">
- <table cellspacing="0" cellpadding="0" align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f5f5f5" colspan="4">修改栏目</td>
- </tr>
- <tr>
- <td width="10%">是否支持投稿:</td>
- <td width="40%">
- <label><input type="radio" name="issend" value="1" <?php if ($myrow['issend']=="1") echo "checked='1'";?>> 支持</label>
- <label><input type="radio" name="issend" value="0" <?php if ($myrow['issend']=="0") echo "checked='1'";?>> 不支持</label>
- </td>
- <td width="10%">是否隐藏栏目:</td>
- <td width="40%">
- <label><input type="radio" name="ishidden" value="0" <?php if ($myrow['ishidden']=="0") echo "checked='1'";?>> 显示</label>
- <label><input type="radio" name="ishidden" value="1" <?php if ($myrow['ishidden']=="1") echo "checked='1'";?>> 隐藏</label>
- </td>
- </tr>
- <tr>
- <td>文档模型:</td>
- <td>
- <input type="hidden" value="{style}" name="dfstyle">
- <select name="channeltype" id="channeltype" onChange="ParTemplet(this)" class="admin-input-sm">
- <?php
- foreach($channelArray as $k=>$arr)
- {
- if ($k==$channelid) echo " <option value='{$k}' selected>{$arr['typename']} {$arr['nid']}</option>";
- else echo " <option value='{$k}'>{$arr['typename']} {$arr['nid']}</option>";
- }
- ?>
- </select>
- <div id="smclass" class="mt-2" style="<?php echo ($channelid<0 ? '' : 'display:none');?>">
- <select name="smalltype[]" multiple="yes" class="admin-input-md">
- <?php
- $smtypes = explode(',',trim($myrow['smalltypes']));
- $sql = "SELECT * FROM `#@__sys_enum` WHERE egroup LIKE 'infotype' ORDER BY disorder ASC, id DESC ";
- $dsql->Execute('s',$sql);
- while($arr = $dsql->GetArray('s'))
- {
- if (in_array($arr['evalue'],$smtypes)) {
- $selstr = " selected='1' ";
- } else {
- $selstr = '';
- }
- if ($arr['evalue']%500==0) {
- echo "<option value='{$arr['evalue']}'{$selstr}>{$arr['ename']}</option>";
- } else if (preg_match("#\.#", $arr['evalue'])) {
- echo "<option value='{$arr['evalue']}'{$selstr}>└─ {$arr['ename']}</option>";
- } else {
- echo "<option value='{$arr['evalue']}'{$selstr}>{$arr['ename']}</option>";
- }
- }
- ?>
- </select>
- <span>(支持多选)</span>
- </div>
- </td>
- <td>上级目录:</td>
- <td>
- <?php
- $pardir = '{cmspath}'.$cfg_arcdir;
- if (!empty($typedir)) $pardir = $typedir.'/';
- $pardir = preg_replace("#\/{1,}#", '/', $pardir);
- echo $pardir;
- ?>
- <input type="hidden" name="nextdir" id="nextdir" value="<?php echo $pardir?>">
- </td>
- </tr>
- <tr>
- <td>中文名称:</td>
- <td><input type="text" name="typename" value="<?php echo $myrow['typename']?>" class="admin-input-md"></td>
- <td>中文概述:</td>
- <td><input type="text" name="cnoverview" value="<?php echo $myrow['cnoverview']?>" class="admin-input-md"></td>
- </tr>
- <tr>
- <td>英文名称:</td>
- <td><input type="text" name="enname" value="<?php echo $myrow['enname']?>" class="admin-input-md"></td>
- <td>英文概述:</td>
- <td><input type="text" name="enoverview" value="<?php echo $myrow['enoverview']?>" class="admin-input-md"></td>
- </tr>
- <tr>
- <td>栏目大图:</td>
- <td>
- <input type="text" name="bigpic" value="<?php echo $myrow['bigpic']?>" class="admin-input-md">
- <input type="button" class="btn btn-success btn-sm" value="浏览" onclick="SelectImage('form1.bigpic');">
- </td>
- <td>栏目小图:</td>
- <td>
- <input type="text" name="litimg" value="<?php echo $myrow['litimg']?>" class="admin-input-md">
- <input type="button" class="btn btn-success btn-sm" value="浏览" onclick="SelectImage('form1.litimg');">
- </td>
- </tr>
- <tr>
- <td>排列顺序:</td>
- <td><input type="text" name="sortrank" value="<?php echo $myrow['sortrank']?>" class="admin-input-sm">(由低 > 高)</td>
- <td>浏览权限:</td>
- <td>
- <select name="corank" id="corank" class="admin-input-sm">
- <?php
- $dsql->SetQuery("SELECT * FROM `#@__arcrank` where `rank` >= 0");
- $dsql->Execute('cc');
- while($row = $dsql->GetObject('cc'))
- {
- if ($myrow['corank']==$row->rank)
- echo "<option value='".$row->rank."' selected>".$row->membername."</option>";
- else
- echo "<option value='".$row->rank."'>".$row->membername."</option>";
- }
- ?>
- </select>
- </td>
- </tr>
- <tr>
- <td>文件保存目录:</td>
- <td><input type="text" name="typedir" id="typedir" value="<?php echo $myrow['typedir']?>" class="admin-input-md">(标签“{cmspath}”请勿删除)</td>
- <td>继承选项:</td>
- <td><label><input type="checkbox" name="upnext" id="upnext" value="1"> 同时继承下级栏目浏览权限、文档类型、模板风格、命名规则等通用属性</label></td>
- </tr>
- <tr>
- <td>栏目列表选项:</td>
- <td>
- <label><input type="radio" name="isdefault" value="1" <?php if ($myrow['isdefault']==1) echo "checked='1'";?>> 链接到默认页</label>
- <label><input type="radio" name="isdefault" value="0" <?php if ($myrow['isdefault']==0) echo "checked='1'";?>> 链接到列表第一页</label>
- <label><input type="radio" name="isdefault" value="-1" <?php if ($myrow['isdefault']==-1) echo "checked='1'";?>> 使用动态页</label>
- </td>
- <td>默认页的名称:</td>
- <td><input type="text" name="defaultname" value="<?php echo $myrow['defaultname']?>" class="admin-input-md"></td>
- </tr>
- <tr>
- <td>栏目属性:</td>
- <td>
- <label><input type="radio" name="ispart" value="0" <?php if ($myrow['ispart']==0) echo "checked='1'";?>> 列表栏目(允许发布文档)</label>
- <label><input type="radio" name="ispart" value="1" <?php if ($myrow['ispart']==1) echo "checked='1'";?>> 封面栏目(不允许发布文档)</label>
- <label><input type="radio" name="ispart" value="2" <?php if ($myrow['ispart']==2) echo "checked='1'";?>> 外部栏目(文件保存目录处填写链接)</label>
- </td>
- <td>栏目交叉:</td>
- <td>
- <label><input type="radio" name="cross" id="cross0" value="0" onclick="CheckCross()" <?php if ($myrow['cross']==0) echo "checked='1'";?>> 不交叉</label>
- <label><input type="radio" name="cross" id="cross1" value="1" onclick="CheckCross()" <?php if ($myrow['cross']==1) echo "checked='1'";?>> 自动获取同名栏目文档</label>
- <label><input type="radio" name="cross" id="cross2" value="2" onclick="CheckCross()" <?php if ($myrow['cross']==2) echo "checked='1'";?>> 手工指定交叉栏目id(用英文逗号)</label>
- <span onclick="ShowHide('helpvarco')" title="帮助" class="btn btn-success btn-sm"><i class="fa fa-question-circle"></i></span><br>
- <textarea name="crossid" id="crossid" class="admin-textarea-sm" style="<?php if ($myrow['cross']!=2) echo'display:none';?>"><?php echo $myrow['crossid'];?></textarea>
- <div id="helpvarco" class="alert alert-warning my-2" style="display:none">交叉栏目是指一个大栏目与另一个非下级的子栏目出现交叉的情况,相当于系统原来的副栏目功能,不过现在改在栏目里预先设置好。注:会自动索引交叉栏目的文档,但不会索引交叉栏目下级栏目的文档,这种应用也适用于按地区划分资讯的站点</div>
- </td>
- </tr>
- <tr>
- <td width="260">多站点支持:</td>
- <td>
- <label><input type="radio" name="moresite" value="1" <?php if ($myrow['moresite']==1) echo "checked='1'";?>> 启用</label>
- <label><input type="radio" name="moresite" value="0" <?php if ($myrow['moresite']==0) echo "checked='1'";?>> 不启用</label>(只需要顶级栏目设置,子级栏目修改无效)
- </td>
- <td>绑定域名:</td>
- <td><input type="text" name="siteurl" id="siteurl" value="<?php echo $myrow['siteurl']?>" class="admin-input-md">(需要加http开头的链接)</td>
- </tr>
- <tr>
- <td>列表模板:</td>
- <td>
- <input type="text" name="templist" value="<?php echo $myrow['templist']?>" class="admin-input-md">
- <button type="button" name="set1" class="btn btn-success btn-sm" onclick="SelectTemplets('form1.templist')">浏览</button>
- </td>
- <td>封面模板:</td>
- <td>
- <input type="text" name="tempindex" value="<?php echo $myrow['tempindex']?>" class="admin-input-md">
- <button type="button" name="set2" class="btn btn-success btn-sm" onclick="SelectTemplets('form1.tempindex')">浏览</button>
- <span onclick="ShowHide('helpvar1')" title="帮助" class="btn btn-success btn-sm"><i class="fa fa-question-circle"></i></span>
- <div id="helpvar1" class="alert alert-warning my-2" style="display:none">
- {tid} 栏目id<br>
- {cid} 栏目模型名字id
- </div>
- </td>
- </tr>
- <tr>
- <td>文档模板:</td>
- <td>
- <input type="text" name="temparticle" value="<?php echo $myrow['temparticle']?>" class="admin-input-md">
- <button type="button" name="set3" class="btn btn-success btn-sm" onclick="SelectTemplets('form1.temparticle')">浏览</button>
- </td>
- <td>列表命名规则:</td>
- <td>
- <input type="text" name="namerule2" id="namerule2" value="<?php echo $myrow['namerule2']?>" class="admin-input-md">
- <span onclick="ShowHide('helpvar2')" title="帮助" class="btn btn-success btn-sm"><i class="fa fa-question-circle"></i></span>
- <div id="helpvar2" class="alert alert-warning my-2" style="display:none">
- 静态规则<br>
- {tid} 栏目id<br>
- {page} 栏目页码数<br>
- <hr>
- 伪静态规则(Nginx)<br>
- rewrite ^/list-([0-9]+)$ /apps/list.php?tid=$1;<br>
- rewrite ^/list-([0-9]+)-([0-9]+)$ /apps/list.php?tid=$1&PageNo=$2;
- </div>
- </td>
- </tr>
- <tr>
- <td>文档命名规则:</td>
- <td>
- <input type="text" name="namerule" id="namerule" value="<?php echo $myrow['namerule']?>" class="admin-input-md">
- <span onclick="ShowHide('helpvar3')" title="帮助" class="btn btn-success btn-sm"><i class="fa fa-question-circle"></i></span>
- <div id="helpvar3" class="alert alert-warning my-2" style="display:none">
- 静态规则<br>
- {Y}{M}{D} 年月日<br>
- {timestamp} INT类型的UNIX时间戳<br>
- {aid} 文档id<br>
- {pinyin} 拼音加文档id<br>
- {py} 拼音部首加文档id<br>
- {typedir} 栏目保存目录<br>
- {cc} 日期加混编id后用转换为适合字母<br>
- <hr>
- 伪静态规则(Nginx)<br>
- rewrite ^/([0-9]+).html$ /apps/view.php?arcID=$1;<br>
- rewrite ^/([0-9]+)-([0-9]+).html$ /apps/view.php?aid=$1&pageno=$2;
- </div>
- </td>
- <td>SEO标题:</td>
- <td><input type="text" name="seotitle" id="seotitle" value="<?php echo $myrow['seotitle']?>" class="admin-input-md">(标签“{dede:field.seotitle/}”调用)</td>
- </tr>
- <tr>
- <td>关键词:</td>
- <td><textarea name="keywords" cid="keywords" class="admin-textarea-sm"><?php echo $myrow['keywords']?></textarea>(标签“{dede:field.keywords/}”调用)</td>
- <td>描述:</td>
- <td><textarea name="description" id="description" class="admin-textarea-sm"><?php echo $myrow['description']?></textarea>(标签“{dede:field.description/}”调用)</td>
- </tr>
- <tr>
- <td>是否支持跨站调用:</td>
- <td>
- <input value="<?php echo $myrow['apikey']?>" type="text" name="apikey" id="apikey" class="admin-input-md" placeholder="请输入跨站调用秘钥">
- <span class="btn btn-success btn-sm mr-2" title="更新秘钥" onclick="makeAPIKey()"><i class="fa fa-repeat"></i></span>
- <label><input type="radio" name="apienabled" value="1" <?php if ($myrow['apienabled']=="1") echo "checked='1'";?>> 支持</label>
- <label><input type="radio" name="apienabled" value="0" <?php if ($myrow['apienabled']=="0") echo "checked='1'";?>> 不支持</label>
- </td>
- <td colspan="2"></td>
- </tr>
- <tr>
- <td colspan="4">栏目文档(标签“{dede:field.content/}”调用)</td>
- </tr>
- <tr>
- <td colspan="4"><?php GetEditor("content",$myrow['content'],"400","Default","print","false");?></td>
- </tr>
- <tr>
- <td bgcolor="#f5f5f5" align="center" colspan="4">
- <button type="submit" class="btn btn-success btn-sm">保存</button>
- <a href="catalog_main.php" class="btn btn-outline-success btn-sm">返回</a>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|