mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 02:10:02 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4616 201d5d3c-b55e-5fd7-737f-ddc643e51545
85 lines
3 KiB
HTML
85 lines
3 KiB
HTML
<!--%import("css/widget.css")-->
|
|
<!--%import("../../admin/tpl/css/admin.css")-->
|
|
|
|
<div id="popBody">
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->widget_maker}</caption>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->title}</div></th>
|
|
<td>{$widget_info->title} ver {$widget_info->version}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->author}</div></th>
|
|
<td>
|
|
<!--@foreach($widget_info->author as $author)-->
|
|
{$author->name} (<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a>, <a href="mailto:{$author->email_address}">{$author->email_address}</a>)<br />
|
|
<!--@endforeach-->
|
|
</td>
|
|
</tr>
|
|
<!--@if($widget_info->homepage)-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->homepage}</div></th>
|
|
<td><a href="{$widget_info->homepage}" onclick="window.open(this.href);return false;">{$widget_info->homepage}</a></td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->regdate}</div></th>
|
|
<td>{zdate($widget_info->date, 'Y-m-d')}</td>
|
|
</tr>
|
|
<!--@if($widget_info->license || $widget_info->license_link)-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->widget_license}</div></th>
|
|
<td>
|
|
{nl2br(trim($widget_info->license))}
|
|
<!--@if($widget_info->license_link)-->
|
|
<p><a href="{$widget_info->license_link}" onclick="window.close(); return false;">{$widget_info->license_link}</a></p>
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->description}</div></th>
|
|
<td>{nl2br(trim($widget_info->description))}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<!--@if($widget_info->history)-->
|
|
<div id="popHistoryHeadder">
|
|
<h3>{$lang->widget_history}</h3>
|
|
</div>
|
|
|
|
<div id="popHistoryBody">
|
|
<table cellspacing="0" class="adminTable">
|
|
<!--@foreach($widget_info->history as $history)-->
|
|
<tr>
|
|
<th scope="row"><div>
|
|
{$history->version}<br />
|
|
{$history->date}
|
|
</div></th>
|
|
<td>
|
|
<!--@if($history->author)-->
|
|
<!--@foreach($history->author as $author)-->
|
|
<p>{$author->name} (<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a> / <a href="mailto:{$author->email_address}">{$author->email_address}</a>)</p>
|
|
<!--@endforeach-->
|
|
<!--@endif-->
|
|
|
|
<!--@if($history->description)-->
|
|
<p>{nl2br(trim($history->description))}</p>
|
|
<!--@endif-->
|
|
|
|
<!--@if($history->logs)-->
|
|
<ul>
|
|
<!--@foreach($history->logs as $log)--><li>{$log->text}</li><!--@endforeach-->
|
|
</ul>
|
|
<!--@endif-->
|
|
</td>
|
|
</tr>
|
|
<!--@endforeach-->
|
|
</table>
|
|
</div>
|
|
<!--@endif-->
|
|
|
|
<div id="popFooter" class="tCenter gap1">
|
|
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
|
|
</div>
|