caiji_step3.tpl.php
来自「a short sketch about linux syntex lines.」· PHP 代码 · 共 96 行
PHP
96 行
<html>
<head>
<title>系统后台</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link type="text/css" rel="stylesheet" href="../../images/admin/public.css" />
<link type="text/css" rel="stylesheet" href="../../images/admin/style.css" />
<link href="<?php echo $this->basedir;?>js/datepicker.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $this->basedir;?>js/jquery.js" language="javascript"></script>
<script src="<?php echo $this->basedir;?>js/ui.datepicker.js"></script>
<script>
<!--
$(document).ready(function(){
$('#stime').datepicker();
$('#etime').datepicker();
}
)
function goback(){
var frm = document.form1;
frm.action='<?php echo $this->installdir;?>?mod=caiji&action=add&step=2';
frm.submit();
}
//-->
</script>
<body>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr align="center" valign="top">
<td width="*" align="center" valign="top">
<!-- ######### begin ######### -->
<div class="Block">
<?php if($this->message){?>
<div class="BlockBar">有错误发生了</div>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td height="50">
<div style="margin-left:30px; line-height:30px; color:#FF0000">
<ul>
<?php foreach($this->message as $val){
echo '<li>'.$val.'</li>';
}
;?>
</ul></div></td>
</tr>
</table>
<br />
<?php }?>
<div class="BlockBar">秀影采集助手》建立新规则</div>
<form id="form1" name="form1" method="post" action="<?php echo $this->installdir;?>?mod=caiji&action=add&step=4">
<table width="100%" border="0" cellpadding="5" cellspacing="1" class="tab">
<tr class="row">
<td width="19%" class="align-right">站点名称:</td>
<td width="81%"><?php echo $this->data['name'];?></td>
</tr>
<tr class="row">
<td class="align-right">URL地址:</td>
<td><?php echo $this->data['url'];?></td>
</tr>
<tr class="row">
<td class="align-right">采集源页:</td>
<td><a href="<?php echo $this->data['movielink'];?>" target="_blank"><?php echo $this->data['movielink'];?></a></td>
</tr>
<tr class="row">
<td class="align-right">采集状态:</td>
<td><?php echo $this->succeed;?></td>
</tr>
<tr class="row">
<td class="align-right">采集到的路径:</td>
<td><?php echo $this->filename;?>(只列出一个作为参考)</td>
</tr>
<tr class="row">
<td class="align-right"> </td>
<td><input type="submit" class="btn" value="保存规则" />
<input name="Submit" type="button" class="btn" value="返回规则列表" onClick="goback()"></td>
</tr>
</table>
<?php echo makeiInputHidden($this->data);?>
</form>
</div>
<div id="App-Version-Prompt" style="display:none;">
<div class="space"></div>
<div class="Block">
<div class="BlockBar">版本更新信息</div>
<div class="BlockContent" id="App-Version-Prompt-Body" style="padding:20px 5px 20px 5px; text-align:center; background:#FFFFCC;">loading...</div>
</div>
</div>
<!-- ########## end ########## -->
</td>
</tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?