mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4578 201d5d3c-b55e-5fd7-737f-ddc643e51545
57 lines
2.5 KiB
HTML
57 lines
2.5 KiB
HTML
<!--%import("filter/insert_shortcut.xml")-->
|
|
<!--#include("header.html")-->
|
|
|
|
<!-- 관리자 메뉴 바로가기 추가를 위한 임시 form -->
|
|
<form id="fo_shortcut" action="./" method="get">
|
|
<input type="hidden" name="selected_module" value="" />
|
|
</form>
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="wide"><div>{$lang->module_name}</div></th>
|
|
<th scope="col"><div>{$lang->version}</div></th>
|
|
<th scope="col"><div>{$lang->author}</div></th>
|
|
<th scope="col"><div>{$lang->date}</div></th>
|
|
<th scope="col"><div>{$lang->table_count}</div></th>
|
|
<th scope="col"><div>{$lang->installed_path}</div></th>
|
|
<th scope="col"><div>{$lang->module_info}</div></th>
|
|
<th scope="col"><div>{$lang->module_action}</div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($module_list as $key => $val)-->
|
|
<tr>
|
|
<td class="left gl3 blue">
|
|
<!--@if($val->admin_index_act)-->
|
|
<a href="{getUrl('act',$val->admin_index_act)}" title="{trim($val->description)}">{$val->title}</a> ({$val->module})
|
|
<!--@else-->
|
|
<span title="{trim($val->description)}">{$val->title}</span> ({$val->module})
|
|
<!--@end-->
|
|
</td>
|
|
<td class="tahoma">{$val->version}</td>
|
|
<td>
|
|
<!--@foreach($val->author as $author)-->
|
|
<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->name}</a>
|
|
<!--@endforeach-->
|
|
</td>
|
|
<td class="tahoma">{zdate($val->date, 'Y-m-d')}</td>
|
|
<td class="tahoma <!--@if($val->created_table_count != $val->table_count)-->red<!--@end-->">
|
|
{$val->created_table_count}/{$val->table_count}
|
|
</td>
|
|
<td class="tahoma left">{$val->path}</td>
|
|
<td class="blue"><a href="{getUrl('','module','module','act','dispModuleAdminInfo','selected_module',$val->module)}" onclick="popopen(this.href,'module_info');return false">{$lang->cmd_view}</a></td>
|
|
<td class="red">
|
|
<!--@if($val->need_install)-->
|
|
<a href="#" onclick="doInstallModule('{$val->module}');return false;">{$lang->cmd_install}</a>
|
|
<!--@end-->
|
|
<!--@if($val->need_update)-->
|
|
<a href="#" onclick="doUpdateModule('{$val->module}'); return false;">{$lang->cmd_update}</a>
|
|
<!--@else-->
|
|
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|