mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 12:19:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
98 lines
3.1 KiB
HTML
98 lines
3.1 KiB
HTML
<!--#include("header.html")-->
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<col width="150" />
|
|
<col />
|
|
<tr>
|
|
<th scope="row">{$lang->module_category}</th>
|
|
<td>
|
|
<!--@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">{$lang->skin}</th>
|
|
<td>{$module_info->skin_title} ({$module_info->skin})</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->browser_title}</th>
|
|
<td>{htmlspecialchars($module_info->browser_title)}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->list_count}</th>
|
|
<td>{$module_info->list_count?$module_info->list_count:20}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->page_count}</th>
|
|
<td>{$module_info->page_count?$module_info->page_count:10}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->description}</th>
|
|
<td>{nl2br(htmlspecialchars($module_info->description))} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->header_text}</th>
|
|
<td>{htmlspecialchars($module_info->header_text)} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->footer_text}</th>
|
|
<td>{htmlspecialchars($module_info->footer_text)} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$lang->admin_id}</th>
|
|
<td><!--@if(is_array($module_info->admin_id))-->{implode(",",$module_info->admin_id)}<!--@end--> </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row" colspan="2" class="button">
|
|
<a href="{getUrl('act','dispBlogAdminInsertBlog')}" class="button"><span>{$lang->cmd_modify}</span></a>
|
|
<!--@if($module=="admin")-->
|
|
<a href="{getUrl('act','dispBlogAdminContent','module_srl','')}" class="button"><span>{$lang->cmd_blog_list}</span></a>
|
|
<!--@end-->
|
|
</th>
|
|
</tr>
|
|
</table>
|
|
|
|
<!--@for($i=1;$i<=20;$i++)-->
|
|
<!--@if($module_info->extra_vars[$i])-->
|
|
{@ $extra_vars_name = $module_info->extra_vars[$i]->name}
|
|
{@ $extra_vars_type = $module_info->extra_vars[$i]->type}
|
|
{@ $extra_vars_is_required = $module_info->extra_vars[$i]->is_required=='Y'?'Y':'N'}
|
|
{@ $extra_vars_default_value = $module_info->extra_vars[$i]->default?$module_info->extra_vars[$i]->default:' '}
|
|
{@ $extra_vars_desc = $module_info->extra_vars[$i]->desc?$module_info->extra_vars[$i]->desc:' '}
|
|
{@ $extra_vars_search = $module_info->extra_vars[$i]->search=='Y'?'Y':'N'}
|
|
|
|
<div class="gap1"></div>
|
|
<table cellspacing="0" class="adminTable">
|
|
<col width="150" />
|
|
<col />
|
|
<caption>{$lang->extra_vars} {$i}</caption>
|
|
<tr>
|
|
<th>{$lang->column_name}</th>
|
|
<td>{$extra_vars_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->column_type}</th>
|
|
<td>{$extra_vars_type}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->is_required}</th>
|
|
<td>{$extra_vars_is_required}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->default_value}</th>
|
|
<td>{$extra_vars_default_value}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->description}</th>
|
|
<td>{$extra_vars_desc}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->cmd_search}</th>
|
|
<td>{$extra_vars_search}</td>
|
|
</tr>
|
|
</table>
|
|
<!--@end-->
|
|
<!--@end-->
|