⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 templateproject.php

📁 phpcms网站管理系统  很不错的 有需要的就下载看看八 
💻 PHP
字号:
<?php 
defined('IN_PHPCMS') or exit('Access Denied');
include admintpl('header');
?>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
  <tr>
    <td></td>
  </tr>
</table>
<?=$menu?>

<table cellpadding="2" cellspacing="1" class="tableborder">
  <tr>
    <th colspan=7>模板方案管理</th>
  </tr>
<form method="post" action="?mod=<?=$mod?>&file=<?=$file?>&action=update">
<tr align="center">
<td class="tablerowhighlight">方案名称</td>
<td class="tablerowhighlight">方案简介</td>
<td class="tablerowhighlight">是否默认</td>
<td class="tablerowhighlight">方案管理</td>
<td class="tablerowhighlight">方案操作</td>
</tr>
<?php 
if(is_array($projects)){
	foreach($projects as $project){
?>
<tr align="center"  align=center onmouseout="this.style.backgroundColor='#F1F3F5'" onmouseover="this.style.backgroundColor='#BFDFFF'" bgColor='#F1F3F5'>
<td><input size=15 name="projectname[<?=$project['projectid']?>]" type="text" value="<?=$project['projectname']?>"></td>
<td><input size=15 name="introduce[<?=$project['projectid']?>]" type="text" value="<?=$project['introduce']?>"></td>
<td><?php if($project['isdefault']){?><font color="red">是</font><?php }else{ ?>否 <?php } ?> </td>
<td><a href="?mod=<?=$mod?>&file=template&action=manage&projectid=<?=$project['projectid']?>">管理模板</a> | <a href="?mod=<?=$mod?>&file=skin&action=manage&projectid=<?=$project['projectid']?>">管理风格</a></td>
<td><?php if($project['isdefault']){?><span class="gray">设为默认 | 删除</span><?php }else{ ?><a href="?mod=<?=$mod?>&file=<?=$file?>&action=setdefault&projectid=<?=$project['projectid']?>">设为默认</a> | <a href="?mod=<?=$mod?>&file=<?=$file?>&action=delete&projectid=<?=$project['projectid']?>">删除</a><?php } ?></td>
</tr>
<?php 
	}
}
?>
<tr align="center"  onmouseout="this.style.backgroundColor='#F1F3F5'" onmouseover="this.style.backgroundColor='#BFDFFF'" bgColor='#F1F3F5'>
<td><input size=15 name="newprojectname" type=text ></td>
<td><input size=15 name="newintroduce" type=text ></td>
<td>添加模板方案</td>
<td></td>
<td></td>
</tr>
</table>
<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center"><input type="submit" name="submit" value=" 更新模板方案 "></td>
  </tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -