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

📄 skin.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 width="5%" class="tablerowhighlight">选中</td>
<td width="5%" class="tablerowhighlight">ID</td>
<td width="20%" class="tablerowhighlight">模板名称</td>
<td width="20%" class="tablerowhighlight">模板位置</td>
<td width="15%" class="tablerowhighlight">方案名称</td>
<td width="15%" class="tablerowhighlight">系统默认</td>
<td width="20%" class="tablerowhighlight">管理操作</td>
</tr>
<?php 
if(is_array($skins)){
	foreach($skins as $skin){
?>
<tr align="center"  align=center onmouseout="this.style.backgroundColor='#F1F3F5'" onmouseover="this.style.backgroundColor='#BFDFFF'" bgColor='#F1F3F5'>
<td><input size=15 name="skinid[<?=$skin['skinid']?>]" type="checkbox" value="<?=$skinid['skinid']?>" readonly></td>
<td><?=$skin['skinid']?></td>
<td><?=$skin['skinname']?></td>
<td align="left">./skin/<?=$skin['skin']?>/</td>
<td><?=$skin['projectname']?></td>
<td><?php if($skin['isdefault']){?>√<?php }?></td>
<td><?php if($skin['isdefault']){?><span class="gray">设为默认</span><?php }else{ ?><a href="?mod=<?=$mod?>&file=<?=$file?>&action=setdefault&skinid=<?=$skin['skinid']?>&projectid=<?=$skin['projectid']?>">设为默认</a><?php } ?> | <a href="?mod=<?=$mod?>&file=<?=$file?>&action=edit&skinid=<?=$skin['skinid']?>">修改</a> | <a href="?mod=<?=$mod?>&file=<?=$file?>&action=delete&skinid=<?=$skin['skinid']?>">删除</a></td>
</tr>
<?php 
	}
}
?>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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