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.
43 lines
1.4 KiB
43 lines
1.4 KiB
<!-- $Id: integrates_list.htm 15716 2009-03-06 03:22:25Z sunxiaodong $ -->
|
|
{include file="pageheader.htm"}
|
|
<!-- start integrate plugins list -->
|
|
<div class="form-div">
|
|
{$lang.user_help}
|
|
</div>
|
|
<div class="list-div" id="listDiv">
|
|
<table cellspacing='0' cellpadding='0'>
|
|
<tr>
|
|
<th>{$lang.integrate_name}</th>
|
|
<th>{$lang.integrate_version}</th>
|
|
<th>{$lang.integrate_author}</th>
|
|
<th>{$lang.handler}</th>
|
|
</tr>
|
|
{foreach from=$modules item=module}
|
|
<tr>
|
|
<td class="first-cell">{$module.name}</td>
|
|
<td>{$module.version}</td>
|
|
<td><a href="{$module.website}">{$module.author}</a></td>
|
|
<td align="center">
|
|
{if $module.installed == 1}
|
|
<a href="integrate.php?act=setup&code={$module.code}">{$lang.setup}</a>{if $allow_set_points} <a href="integrate.php?act=points_set&code={$module.code}">{$lang.points_set}</a>{/if}
|
|
{else}
|
|
<a {if $module.code neq "ecshop"}href="javascript:confirm_redirect('{$lang.install_confirm}', 'integrate.php?act=install&code={$module.code}')"{else}href="integrate.php?act=install&code={$module.code}" {/if}>{$lang.install}</a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</div>
|
|
<!-- end integrate plugins list -->
|
|
{literal}
|
|
<script type="Text/Javascript" language="JavaScript">
|
|
<!--
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
//-->
|
|
</script>
|
|
{/literal}
|
|
{include file="pagefooter.htm"}
|