You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.4 KiB

3 years ago
{include file="pageheader.htm"}
<div class="tab-div">
<!-- tab bar -->
{include file="flashplay_tab.htm"}
<!-- body -->
<div class="tab-body">
<div class="list-div list-div-ad" id="listDiv">
<table cellspacing='0' cellpadding='0' id='list-table' width="70%">
<tr>
<th width="400px">{$lang.schp_imgsrc}</th>
<th>{$lang.schp_imgurl}</th>
<th>{$lang.schp_imgdesc}</th>
<th>{$lang.schp_sort}</th>
<th width="70px">{$lang.handler}</th>
</tr>
{foreach from=$playerdb item=item key=key}
<tr>
<td><a href="{$item.src}" target="_blank">{$item.src}</a></td>
<td align="left"><a href="{$item.url}" target="_blank">{$item.url}</a></td>
<td align="left">{$item.text}</td>
<td align="left">{$item.sort}</td>
<td align="center">
<a href="flashplay.php?act=edit&id={$key}" title="{$lang.edit}"><img src="images/icon_edit.gif" width="21" height="21" border="0" /></a>
<a href="flashplay.php?act=del&id={$key}" onclick="return check_del();" title="{$lang.trash_img}"><img src="images/icon_drop.gif" width="21" height="21" border="0" /></a>
</td>
</tr>
{/foreach}
</table>
<table cellspacing="0">
<tr>
<td>
<input name="add" type="submit" id="btnSubmit" value="{$action_link_special.text}" onclick="location.href='{$action_link_special.href}';" class="button"/>
</td>
</tr>
</table>
</div>
<div class="list-div list-div-ad" style="margin-top:15px;">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th>{$lang.flash_template}</th></tr>
<tr>
<td>{foreach from=$flashtpls item=flashtpl}
<table border="0" cellpadding="0" cellspacing="0" style="float:left;width: 220px; margin-left:10PX; margin-bottom:10px;">
<tr>
<td><strong><center>{$flashtpl.name}&nbsp;{if $flashtpl.code eq $current_flashtpl}<span style="color:red;" id="current_theme">{$lang.current_theme}</span>{/if}</center></strong></td>
</tr>
<tr>
<td style="text-align:center; padding-bottom:8px;">{if $flashtpl.screenshot}<img src="{$flashtpl.screenshot}" border="0" style="cursor:pointer" onclick="setupFlashTpl('{$flashtpl.code}', this)" />{/if}</td>
</tr>
<tr>
<td valign="top" style="text-align:center">{$flashtpl.desc}</td>
</tr>
</table>
{/foreach}</td>
</tr>
</table>
</div>
</div>
</div>
<script language="JavaScript">
<!--
onload = function()
{
// 开始检查订单
startCheckOrder();
}
function check_del()
{
if (confirm('{$lang.trash_img_confirm}'))
{
return true;
}
else
{
return false;
}
}
/**
* 安装Flash样式模板
*/
function setupFlashTpl(tpl, obj)
{
window.current_tpl_obj = obj;
if (confirm(setupConfirm))
{
Ajax.call('flashplay.php?is_ajax=1&act=install', 'flashtpl=' + tpl, setupFlashTplResponse, 'GET', 'JSON');
}
}
function setupFlashTplResponse(result)
{
if (result.message.length > 0)
{
alert(result.message);
}
if (result.error == 0)
{
var tmp_obj = window.current_tpl_obj.parentNode.parentNode.previousSibling;
while (tmp_obj.nodeName.toLowerCase() != 'tr')
{
tmp_obj = tmp_obj.previousSibling;
}
tmp_obj = tmp_obj.getElementsByTagName('center');
tmp_obj[0].appendChild(document.getElementById('current_theme'));
}
}
//-->
</script>
3 years ago
{include file="pagefooter.htm"}