mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@416 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c3de1572b3
commit
9bc8a365a8
5 changed files with 61 additions and 9 deletions
56
modules/plugin/tpl.admin/plugin_detail_info.html
Normal file
56
modules/plugin/tpl.admin/plugin_detail_info.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<table border="1" width="400">
|
||||
<col width="100" />
|
||||
<col width="300" />
|
||||
<tr>
|
||||
<th colspan="2">{$lang->plugin_maker}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->title}</th>
|
||||
<td>{$plugin_info->title} ver {$plugin_info->version}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->author}</th>
|
||||
<td><a href="mailto:{$plugin_info->author->email_address}">{$plugin_info->author->name}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->homepage}</th>
|
||||
<td><a href="#" onclick="window.open('{$plugin_info->author->homepage}');return false;">{$plugin_info->author->homepage}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->regdate}</th>
|
||||
<td>{$plugin_info->author->date}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->description}</th>
|
||||
<td>{nl2br($plugin_info->author->description)}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th colspan="2">{$lang->plugin_history}</th>
|
||||
</tr>
|
||||
<!--@foreach($plugin_info->history as $history)-->
|
||||
<!--@if($history->name)-->
|
||||
<tr>
|
||||
<th>{$lang->name}</th>
|
||||
<td><a href="mailto:{$history->email_address}">{$history->name}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->homepage}</th>
|
||||
<td><a href="#" onclick="window.open('{$history->homepage}');return false;">{$history->homepage}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->regdate}</th>
|
||||
<td>{$history->date}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->description}</th>
|
||||
<td>{nl2br($history->description)}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<a href="#" onclick="self.close()">{$lang->cmd_close}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue