rhymix/modules/board/tpl/board_info.html
zero 8326004cb2 삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
2007-08-12 03:59:52 +00:00

118 lines
4.2 KiB
HTML

<!--#include("header.html")-->
<table cellspacing="0" class="tableType4">
<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->layout}</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">{$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->use_category}</th>
<td><!--@if($module_info->use_category=='Y')-->{$lang->use}<!--@else-->{$lang->notuse}<!--@end--></td>
</tr>
<tr>
<th scope="row">{$lang->open_rss}</th>
<td>{$lang->open_rss_types[$module_info->open_rss]}</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>{implode(",",$module_info->admin_id)}</td>
</tr>
</table>
<div class="tRight gap1">
<a href="{getUrl('act','dispBoardAdminInsertBoard')}" class="button"><span>{$lang->cmd_modify}</span></a>
<!--@if($module=="admin")-->
<a href="{getUrl('act','dispBoardAdminContent','module_srl','')}" class="button"><span>{$lang->cmd_board_list}</span></a>
<!--@end-->
</div>
<table cellspacing="0" class="tableType4">
<col width="150" />
<col />
<caption>{$lang->extra_vars}</caption>
<!--@for($i=1;$i<=20;$i++)-->
<tr>
<th scope="row">{$lang->extra_vars} {$i}</th>
<td>
<!--@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:'&nbsp;'}
{@ $extra_vars_desc = $module_info->extra_vars[$i]->desc?$module_info->extra_vars[$i]->desc:'&nbsp;'}
{@ $extra_vars_search = $module_info->extra_vars[$i]->search=='Y'?'Y':'N'}
<ul class="extra_vars">
<li class="type_key">{$lang->column_name}</li>
<li class="type_value">{$extra_vars_name}</li>
<li class="type_key">{$lang->column_type}</li>
<li class="type_value">{$extra_vars_type}</li>
<li class="type_key">{$lang->is_required}</li>
<li class="type_value">{$extra_vars_is_required}</li>
<li class="type_key">{$lang->default_value}</li>
<li class="type_value">{$extra_vars_default_value}</li>
<li class="type_key">{$lang->description}</li>
<li class="type_value">{$extra_vars_desc}</li>
<li class="type_key">{$lang->cmd_search}</li>
<li class="type_value">{$extra_vars_search}</li>
</ul>
<!--@else-->
{$lang->not_exists}
<!--@end-->
</td>
</tr>
<!--@end-->
</table>
<div class="tRight gap1">
<a href="{getUrl('act','dispBoardAdminInsertBoard')}" class="button"><span>{$lang->cmd_modify}</span></a>
<!--@if($module=="admin")-->
<a href="{getUrl('act','dispBoardAdminContent','module_srl','')}" class="button"><span>{$lang->cmd_board_list}</span></a>
<!--@end-->
</div>