mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-10 04:03:01 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
40 lines
2.4 KiB
HTML
40 lines
2.4 KiB
HTML
<!--%import("js/editor_admin.js")-->
|
|
|
|
<h3 class="xeAdmin">{$lang->editor} <span class="gray">{$lang->cmd_management}</span></h3>
|
|
|
|
<table cellspacing="0" class="crossTable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="half_wide"><div>{$lang->description}</div></th>
|
|
<th scope="col" class="half_wide"><div>{$lang->component_author}</div></th>
|
|
<th scope="col" colspan="2"><div>{$lang->component_version}</div></th>
|
|
<th scope="col"><div>{$lang->component_date}</div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($component_list as $component_name => $xml_info)-->
|
|
<tr class="row2">
|
|
<th colspan="2" scope="row"><div><a href="{getUrl('module','editor','act','dispEditorComponentInfo','component_name',$component_name)}" onclick="popopen(this.href);return false;"><strong>{$xml_info->title}</strong></a> ({$component_name})</div></th>
|
|
<th><a href="#" onclick="doSetupComponent('{$component_name}'); return false;" title="{htmlspecialchars($lang->cmd_setup)}" class="buttonSet buttonSetting"><span>{$lang->cmd_setup}</span></a></th>
|
|
<th>
|
|
<!--@if($xml_info->enabled=='Y')-->
|
|
<a href="#" onclick="doDisableComponent('{$component_name}');return false;" title="{htmlspecialchars($lang->cmd_enable)}" class="buttonSet buttonActive"><span>{$lang->cmd_enable}</span></a>
|
|
<!--@else-->
|
|
<a href="#" onclick="doEnableComponent('{$component_name}');return false;" title="{htmlspecialchars($lang->cmd_disable)}" class="buttonSet buttonDisable"><span>{$lang->cmd_disable}</span></a>
|
|
<!--@end-->
|
|
</th>
|
|
<th><a href="#" onclick="doMoveListOrder('{$component_name}','up');return false;" title="{htmlspecialchars($lang->cmd_move_up)}" class="buttonSet buttonUp"><span>{$lang->cmd_move_up}</span></a><a href="#" onclick="doMoveListOrder('{$component_name}','down');return false;" title="{htmlspecialchars($lang->cmd_move_down)}" class="buttonSet buttonDown"><span>{$lang->cmd_move_down}</span></a></th>
|
|
</tr>
|
|
<tr>
|
|
<td>{nl2br($xml_info->description)}</td>
|
|
<td class="nowrap">
|
|
<!--@foreach($xml_info->author as $author)-->
|
|
<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->name}</a>
|
|
<!--@endforeach-->
|
|
</td>
|
|
<td colspan="2">{$xml_info->version}</td>
|
|
<td>{zdate($xml_info->date, 'Y-m-d')}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</tbody>
|
|
</table>
|