mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 20:59:55 +09:00
메인/ 가상 사이트 모두 관리자 페이지에서 시작 모듈을 설정하는 구조로 변경 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6152 201d5d3c-b55e-5fd7-737f-ddc643e51545
69 lines
2.3 KiB
HTML
69 lines
2.3 KiB
HTML
<!--#include("header.html")-->
|
|
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->module_category}</div></th>
|
|
<td class="wide">
|
|
<!--@if(!$module_info->module_category_srl)-->
|
|
{$lang->not_exists}
|
|
<!--@else-->
|
|
{$module_category[$module_info->module_category_srl]->title}
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->calendar_address}</div></th>
|
|
<td>{$module_info->calendar_address} </td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->layout}</div></th>
|
|
<td>
|
|
<!--@if($module_info->layout_srl)-->
|
|
{$module_info->layout_title} ({$module_info->layout})
|
|
<!--@else-->
|
|
{$lang->not_exists}
|
|
<!--@end-->
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->skin}</div></th>
|
|
<td>{$module_info->skin}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->browser_title}</div></th>
|
|
<td>{htmlspecialchars($module_info->browser_title)}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->use_category}</div></th>
|
|
<td><!--@if($module_info->use_category=='Y')-->{$lang->use}<!--@else-->{$lang->notuse}<!--@end--></td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->list_count}</div></th>
|
|
<td>{$module_info->list_count?$module_info->list_count:20}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->page_count}</div></th>
|
|
<td>{$module_info->page_count?$module_info->page_count:10}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->description}</div></th>
|
|
<td>{nl2br(htmlspecialchars($module_info->description))} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->header_text}</div></th>
|
|
<td>{htmlspecialchars($module_info->header_text)} </td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->footer_text}</div></th>
|
|
<td>{htmlspecialchars($module_info->footer_text)} </td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th colspan="2" class="button">
|
|
<a href="{getUrl('act','dispLifepodAdminInsertLifepod')}" class="button black strong"><span>{$lang->cmd_modify}</span></a>
|
|
<!--@if($module=="admin")-->
|
|
<a href="{getUrl('act','dispLifepodAdminContent','module_srl','')}" class="button"><span>{$lang->cmd_lifepod_list}</span></a>
|
|
<!--@end-->
|
|
</th>
|
|
</tr>
|
|
</table>
|