mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
73 lines
2.4 KiB
HTML
73 lines
2.4 KiB
HTML
<!--#include("header.html")-->
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<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_title} ({$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>
|
|
<th scope="row"><div>{$lang->admin_id}</div></th>
|
|
<td>{implode(",",$module_info->admin_id)} </td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<td colspan="2" class="right">
|
|
<a href="{getUrl('act','dispLifepodAdminInsertLifepod')}" class="button"><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-->
|
|
</td>
|
|
</tr>
|
|
</table>
|