mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
99 lines
3.2 KiB
HTML
99 lines
3.2 KiB
HTML
<!--#include("header.html")-->
|
|
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->module_category}</div></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"><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 class="row2">
|
|
<th scope="row"><div>{$lang->skin}</div></th>
|
|
<td>{$module_info->skin_title} ({$module_info->skin})</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->browser_title}</div></th>
|
|
<td>{htmlspecialchars($module_info->browser_title)}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->svn_url}</div></th>
|
|
<td>{$module_info->svn_url} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->svn_cmd}</div></th>
|
|
<td>{$module_info->svn_cmd} </td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th scope="row"><div>{$lang->diff_cmd}</div></th>
|
|
<td>{$module_info->diff_cmd} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->svn_userid}</div></th>
|
|
<td>{$module_info->svn_userid} </td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row2"><div>{$lang->description}</div></th>
|
|
<td>{nl2br(htmlspecialchars($module_info->description))} </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="right">
|
|
<a href="{getUrl('act','dispIssuetrackerAdminInsertProject')}" class="button"><span>{$lang->cmd_modify}</span></a>
|
|
<!--@if($module=="admin")-->
|
|
<a href="{getUrl('act','dispIssuetrackerAdminContent','module_srl','')}" class="button"><span>{$lang->cmd_list}</span></a>
|
|
<!--@end-->
|
|
</td>
|
|
</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'}
|
|
|
|
<h4 class="xeAdmin">{$lang->extra_vars} {$i}</h4>
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr class="row2">
|
|
<th><div>{$lang->column_name}</div></th>
|
|
<td class="wide">{$extra_vars_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->column_type}</div></th>
|
|
<td>{$extra_vars_type}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th><div>{$lang->is_required}</div></th>
|
|
<td>{$extra_vars_is_required}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->default_value}</div></th>
|
|
<td>{$extra_vars_default_value}</td>
|
|
</tr>
|
|
<tr class="row2">
|
|
<th><div>{$lang->description}</div></th>
|
|
<td>{$extra_vars_desc}</td>
|
|
</tr>
|
|
<tr>
|
|
<th><div>{$lang->cmd_search}</div></th>
|
|
<td>{$extra_vars_search}</td>
|
|
</tr>
|
|
</table>
|
|
<!--@end-->
|
|
<!--@end-->
|