mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +09:00
46 lines
2 KiB
HTML
46 lines
2 KiB
HTML
<!--%import("filter/setup_addon.xml")-->
|
|
|
|
<div id="popHeadder">
|
|
<h1>{$lang->cmd_setup}</h1>
|
|
</div>
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, setup_addon);">
|
|
<input type="hidden" name="addon_name" value="{$addon_info->addon_name}" />
|
|
|
|
<div id="popBody">
|
|
<table cellspacing="0" class="tableType5">
|
|
<col width="100" />
|
|
<col />
|
|
<tr>
|
|
<th scope="row"><label for="textfield1">{$lang->title}</label></th>
|
|
<td>{$addon_info->title} ver. {$addon_info->version}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="textfield2">{$lang->author}</label></th>
|
|
<td><a href="mailto:{$addon_info->author->email_address}">{$addon_info->author->name}</a></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="textfield2">{$lang->homepage}</label></th>
|
|
<td><a href="#" onclick="window.open('{$addon_info->author->homepage}');return false;">{$addon_info->author->homepage}</a></td>
|
|
</tr>
|
|
|
|
<!--@foreach($addon_info->extra_vars as $key => $val)-->
|
|
<tr>
|
|
<th scope="row">{$val->title}</th>
|
|
<td>
|
|
<input type="text" name="{$val->name}" value="{$val->value}" class="inputTypeText w100" />
|
|
<p>{$val->description}</p>
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</table>
|
|
</div>
|
|
|
|
<div id="popFooter">
|
|
<ul class="buttonRight nospace">
|
|
<li><span class="buttonTypeA"><img src="../../admin/tpl/images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_apply}" class="editor_button" /><img src="../../admin/tpl/images/blank.gif" alt="" class="rightCap" /></span></li>
|
|
<li><span class="buttonTypeA"><a href="#" onclick="window.close(); return false;" class="buttonTypeA"><img src="../../admin/tpl/images/blank.gif" alt="" class="leftCap" />{$lang->cmd_close}<img src="../../admin/tpl/images/blank.gif" alt="" class="rightCap" /></a></span></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</form>
|