git-svn-id: http://xe-core.googlecode.com/svn/trunk@1761 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-25 10:37:11 +00:00
parent c92102f8fe
commit b7ec12f4c2
45 changed files with 899 additions and 790 deletions

View file

@ -21,4 +21,9 @@
$lang->msg_component_is_last_order = '선택하신 컴포넌트는 마지막에 위치하고 있습니다';
$lang->msg_load_saved_doc = "자동저장된 글이 있습니다. 복구하시겠습니까?\n글을 다 쓰신 후 저장하시면 자동저장본은 사라집니다";
$lang->msg_auto_saved = "자동 저장되었습니다";
$lang->admin_module_title = "위지윅 에디터";
$lang->cmd_disable = "비활성";
$lang->cmd_enable = "활성";
?>

View file

@ -1,47 +1,52 @@
<!--%import("js/editor_admin.js")-->
<table border="1" width="100%">
<tr>
<th>{$lang->component_name}</th>
<th>{$lang->component_version}</th>
<th>{$lang->component_author}</th>
<th>{$lang->component_link}</th>
<th>{$lang->component_date}</th>
<th>{$lang->cmd_setup}</th>
<th>{$lang->use}</th>
<th colspan="2">{$lang->cmd_move}</th>
</tr>
<!--@foreach($component_list as $component_name => $xml_info)-->
<tr>
<td rowspan="2">
<img src="../components/{$component_name}/icon.gif" border="0" alt="{$component_name}" />
{$xml_info->title}<br />({$component_name})
</td>
<td rowspan="2">{$xml_info->version}</td>
<td><a href="mailto:{$xml_info->author->email_address}">{$xml_info->author->name}</a></td>
<td><a href="#" onclick="window.open('{$xml_info->author->link}');return false;">{$xml_info->author->link}</a></td>
<td>{$xml_info->author->date}</td>
<td>
<!--@if($xml_info->extra_vars)-->
<a href="#" onclick="doSetupComponent('{$component_name}'); return false;">{$lang->cmd_setup}</a>
<!--@end-->
</td>
<td>
<!--@if($xml_info->enabled=='Y')-->
<a href="#" onclick="doDisableComponent('{$component_name}');return false;">{$lang->notuse}</a>
<!--@else-->
<a href="#" onclick="doEnableComponent('{$component_name}');return false;">{$lang->use}</a>
<!--@end-->
</td>
<td><a href="#" onclick="doMoveListOrder('{$component_name}','up'); return false;">{$lang->cmd_move_up}</a></td>
<td><a href="#" onclick="doMoveListOrder('{$component_name}','down'); return false;">{$lang->cmd_move_down}</a></td>
</tr>
<tr>
<td colspan="7">
{nl2br($xml_info->description)}
</td>
</tr>
<!--@end-->
<h3>{$lang->admin_module_title} <span class="gray">{$lang->cmd_management}</span></h3>
<table cellspacing="0" class="tableType3">
<thead>
<tr>
<th scope="col">{$lang->component_name}</th>
<th scope="col">{$lang->component_version}</th>
<th scope="col">{$lang->component_author}</th>
<th scope="col">{$lang->component_link}</th>
<th scope="col">{$lang->component_date}</th>
<th scope="col">{$lang->cmd_setup}</th>
<th scope="col">{$lang->use}</th>
<th scope="col">{$lang->cmd_move}</th>
</tr>
</thead>
<tbody>
<!--@foreach($component_list as $component_name => $xml_info)-->
<tr>
<th scope="row" rowspan="2">{$xml_info->title}<br />({$component_name})</th>
<td class="tahoam">{$xml_info->version}</td>
<td><a href="mailto:{$xml_info->author->email_address}">{$xml_info->author->name}</a></td>
<td class="tahoma blue"><a href="#" onclick="window.open('{$xml_info->author->link}');return false;">{$xml_info->author->link}</a></td>
<td class="tahoma">{$xml_info->author->date}</td>
<td class="tahoma">
<!--@if($xml_info->extra_vars)-->
<a href="#" onclick="doSetupComponent('{$component_name}'); return false;">{$lang->cmd_setup}</a>
<!--@else-->
&nbsp;
<!--@end-->
</td>
<td class="tahoma">
<!--@if($xml_info->enabled=='Y')-->
<a href="#" onclick="doDisableComponent('{$component_name}');return false;" class="red">{$lang->cmd_disable}</a>
<!--@else-->
<a href="#" onclick="doEnableComponent('{$component_name}');return false;" class="blue">{$lang->cmd_enable}</a>
<!--@end-->
</td>
<td class="tahoma">
<a href="#" onclick="doMoveListOrder('{$component_name}','up');return false;"><img src="../../admin/tpl/images/button_up.gif" alt="{$lang->cmd_move_up}" width="14" height="14" /></a>
<a href="#" onclick="doMoveListOrder('{$component_name}','down');return false;"><img src="../../admin/tpl/images/button_down.gif" alt="{$lang->cmd_move_down}" width="14" height="14" /></a>
</td>
</tr>
<tr>
<td colspan="7" class="left">
{nl2br($xml_info->description)}
</td>
</tr>
<!--@end-->
</tbody>
</table>