|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <!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 language="javascript" src="../static/js/jquery.js"></script>
- <script src="../static/js/bootstrap.bundle.js"></script>
- <script language="javascript" src="js/main.js"></script>
- <script language="javascript">
- function checkSubmit()
- {
- if(document.form1.title.value=="")
- {
- ShowMsg("页面名称不能为空!");
- document.form1.title.focus();
- return false;
- }
- if(document.form1.nfilename.value=="")
- {
- ShowMsg("文件名不能为空!");
- document.form1.nfilename.focus();
- return false;
- }
- }
- </script>
- </head>
- <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#cfcfcf" class="table maintable table-bordered mt-3">
- <tr>
- <td height="19" background="images/tbg.gif" style="padding-left:10px;">
- <b>◆<a href="templets_one.php"><u>单独页面管理</u></a></b>>>更新页面
- </td>
- </tr>
- <tr>
- <td height="200" bgcolor="#FFFFFF" valign="top">
- <table width="100%" border="0" cellspacing="4" cellpadding="2" class="table table-borderless">
- <form action="templets_one_edit.php" method="post" name="form1" onSubmit="return checkSubmit()">
- <input type='hidden' name='dopost' value='saveedit'>
- <input type='hidden' name='aid' value='<?php echo $aid?>'>
- <tr>
- <td width="15%" height="24" align="center">页面标题:</td>
- <td>
- <input name="title" type="text" id="title" size="30" value="<?php echo $row['title']; ?>"></td>
- </tr>
- <tr>
- <td height="24" align="center">页面关键字:</td>
- <td><input name="keywords" type="text" id="keywords" value="<?php echo $row['keywords']; ?>" size="30">
- (用","分开) </td>
- </tr>
- <tr>
- <td height="24" align="center">页面摘要信息:</td>
- <td><textarea name="description" cols="50" id="description"><?php echo $row['description']; ?></textarea>
- (100字左右)</td>
- </tr>
- <tr>
- <td height="24" align="center">关联标识:</td>
- <td>
- <input name="likeid" type="text" id="likeid" value="<?php echo $row['likeid']; ?>" size="10">
- <input name="oldlikeid" type="hidden" id="oldlikeid" value="<?php echo $row['likeid']; ?>">
- <?php
- echo "<select name='likeidsel' id='likeidsel'>\r\n";
- $dsql->Execute('s',"Select likeid From `#@__sgpage` group by likeid ");
- echo "<option value='{$row['likeid']}' selected>{$row['likeid']}</option>\r\n";
- while($arr = $dsql->GetArray('s'))
- {
- if($arr['likeid']!=$row['likeid']) echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>\r\n";
- }
- echo "</select>\r\n";
- ?>
- </td>
- </tr>
- <tr>
- <td height="24" align="center" bgcolor="#FFFFFF">模板文件名:</td>
- <td bgcolor="#FFFFFF">
- <input name="template" type="text" id="template" value="<?php echo $row['template']; ?>" size="30">
- </td>
- </tr>
- <tr>
- <td height="24" align="center">文件名:</td>
- <td>
- <input name="oldfilename" type="hidden" id="oldfilename" value="<?php echo $row['filename']; ?>">
- <input name="nfilename" type="text" id="nfilename" size="30" value="<?php echo $row['filename']; ?>">
- (相对于CMS安装目录)
- </td>
- </tr>
- <tr>
- <td height="24" align="center">是否编译内容:</td>
- <td>
- <label><input name="ismake" type="radio" value="1"<?php if($row['ismake']==1) echo " checked"; ?>>
- 含模板标记,要编译 </label>
- <label><input type="radio" name="ismake" value="0"<?php if($row['ismake']==0) echo " checked"; ?>>
- 不含模板标记,不需要编译 </label></td>
- </tr>
- <tr>
- <td height="24" colspan="2">
- <div class="alert alert-warning" role="alert">
- 内容:(模板里用{dede:field name='body'/}来获得文件内容)
- </div>
- </td>
- </tr>
- <tr>
- <td height="80" colspan="2" align="center">
- <?php GetEditor("body",$row['body'],"500","Default","print","false"); ?>
- </td>
- </tr>
- <tr>
- <td height="53" align="center"> </td>
- <td><button type="submit" name="button1" id="button1" class="btn btn-secondary">确定</button>
- <button type="button" onClick="document.form1.reset();" class="btn btn-secondary">重置</button></td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|