caiji_step2.tpl.php
来自「a short sketch about linux syntex lines.」· PHP 代码 · 共 133 行
PHP
133 行
<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=1';
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=3">
<?php echo makeiInputHidden($this->rule);?>
<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->data['title'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片分类:</td>
<td><?php echo $this->data['category'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片主演:</td>
<td><?php echo $this->data['actor'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片地区:</td>
<td><?php echo $this->data['area'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片导演:</td>
<td><?php echo $this->data['director'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片图片:</td>
<td><?php echo $this->data['picture'];?></td>
</tr>
<tr class="row">
<td class="align-right">影片介绍:</td>
<td><div style="width:auto; height:100px; overflow:scroll;"><?php echo $this->data['contents'];?></div></td>
</tr>
<tr class="row">
<td class="align-right">播放地址:</td>
<td><div style="width:auto; height:100px; overflow:scroll; line-height:20px; list-style-type: lower-roman">
<ol><?php foreach($this->data['playurl'] as $link){ echo '<li><a href="'.$link.'" target="_blank">'.$link.'</a></li>';}?></ol></div></td>
</tr>
<tr class="row">
<td class="align-right">采集播放器页:</td>
<td><input name="inplayer" type="radio" class="radio" value="1" <?php if(isset($this->data['playrule'])) echo 'checked';?> onClick="document.getElementById('playrule').disabled = false;">
采集
<input name="inplayer" type="radio" class="radio" value="0" <?php if(!isset($this->data['playrule'])) echo 'checked';?> onClick="document.getElementById('playrule').disabled = true;">
不采集</td>
</tr>
<tr class="row">
<td class="align-right">播放路径规则:</td>
<td><textarea name="playrule" cols="40" rows="3" id="playrule" <?php if(!isset($this->data['playrule'])) echo 'disabled';?> ><?php echo $this->data['playrule'];?></textarea></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>
<input type="hidden" name="player" value="<?php echo Easy_Filter::htmlentities($this->data['player']);?>" />
</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 + -
显示快捷键?