git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-12 03:59:52 +00:00
commit 8326004cb2
2773 changed files with 91485 additions and 0 deletions

View file

@ -0,0 +1,46 @@
<!--%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="{$addon_info->author->homepage}" onclick="window.open(this.href);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">
<div class="tCenter gap1">
<span class="button"><input type="submit" value="{$lang->cmd_apply}" class="editor_button" /></span>
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
</div>
</div>
</form>