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@5842 201d5d3c-b55e-5fd7-737f-ddc643e51545
113 lines
5.2 KiB
HTML
113 lines
5.2 KiB
HTML
<!--%import("filter/insert_wiki.xml")-->
|
|
<!--%import("js/wiki_admin.js")-->
|
|
<!--#include("header.html")-->
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_wiki)" enctype="multipart/form-data">
|
|
<input type="hidden" name="page" value="{$page}" />
|
|
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
|
|
<!--@if($module_info->is_default=='Y')-->
|
|
<input type="hidden" name="is_default" value="Y" />
|
|
<!--@end-->
|
|
|
|
<table cellspacing="0" class="rowTable">
|
|
<tr>
|
|
<th scope="row"><div>{$lang->mid}</div></th>
|
|
<td>
|
|
<input type="text" name="mid" value="{$module_info->mid}" class="inputTypeText w200" />
|
|
<p>{$lang->about_mid}</p>
|
|
</td>
|
|
</tr>
|
|
<!--@if($module_info->is_default!='Y')-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->is_default}</div></th>
|
|
<td>
|
|
<input type="checkbox" name="is_default" value="Y" <!--@if($module_info->is_default=='Y')-->checked="checked"<!--@end--> id="fld_for_default" class="checkbox" />
|
|
<label for="fld_for_default">{$lang->about_default}</label>
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->module_category}</div></th>
|
|
<td>
|
|
<select name="module_category_srl">
|
|
<option value="0">{$lang->notuse}</option>
|
|
<!--@foreach($module_category as $key => $val)-->
|
|
<option value="{$key}" <!--@if($module_info->module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<p>{$lang->about_module_category}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->use_comment}</div></th>
|
|
<td>
|
|
<select name="use_comment">
|
|
<option value="N" <!--@if($module_info->use_comment=='N')-->selected="selected"<!--@end--> >{$lang->notuse}</option>
|
|
<option value="Y" <!--@if($module_info->use_comment!='N')-->selected="selected"<!--@end--> >{$lang->use}</option>
|
|
</select>
|
|
<p>{$lang->about_use_comment}</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th scope="row"><div>{$lang->browser_title}</div></th>
|
|
<td>
|
|
<input type="text" name="browser_title" value="{htmlspecialchars($module_info->browser_title)}" class="inputTypeText w400" id="browser_title"/>
|
|
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','browser_title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
|
|
<p>{$lang->about_browser_title}</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th scope="row"><div>{$lang->layout}</div></th>
|
|
<td>
|
|
<select name="layout_srl">
|
|
<option value="0">{$lang->notuse}</option>
|
|
<!--@foreach($layout_list as $key => $val)-->
|
|
<option value="{$val->layout_srl}" <!--@if($module_info->layout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option>
|
|
<!--@end-->
|
|
</select>
|
|
<p>{$lang->about_layout}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->skin}</div></th>
|
|
<td>
|
|
<select name="skin">
|
|
<!--@foreach($skin_list as $key=>$val)-->
|
|
<option value="{$key}" <!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='xe_wiki'))-->selected="selected"<!--@end-->>{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<p>{$lang->about_skin}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->description}</div></th>
|
|
<td>
|
|
<textarea name="description" class="inputTypeTextArea fullWidth">{htmlspecialchars($module_info->description)}</textarea>
|
|
<p>{$lang->about_description}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->header_text}</div></th>
|
|
<td>
|
|
<textarea name="header_text" class="inputTypeTextArea fullWidth" id="header_text">{htmlspecialchars($module_info->header_text)}</textarea>
|
|
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','header_text')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
|
|
<p>{$lang->about_header_text}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><div>{$lang->footer_text}</div></th>
|
|
<td>
|
|
<textarea name="footer_text" class="inputTypeTextArea fullWidth" id="footer_text">{htmlspecialchars($module_info->footer_text)}</textarea>
|
|
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','footer_text')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
|
|
<p>{$lang->about_footer_text}</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2" class="button">
|
|
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="history.back(); return false;" /></span>
|
|
</th>
|
|
</table>
|
|
</form>
|