mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
72 lines
3.8 KiB
HTML
72 lines
3.8 KiB
HTML
<load target="./js/module_admin.js" />
|
|
<form ruleset="insertModuleSetup" action="./" method="post" enctype="multipart/form-data" class="x_form-horizontal" style="margin:0">
|
|
<input type="hidden" name="module" value="module" />
|
|
<input type="hidden" name="act" value="procModuleAdminModuleSetup" />
|
|
<input type="hidden" name="module_srls" value="{$module_srls}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/module/tpl/module_setup/1" />
|
|
<div class="x_modal-header">
|
|
<h1>{$lang->bundle_setup}</h1>
|
|
</div>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/module/tpl/module_setup/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<div class="x_modal-body">
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="module_category_srl">{$lang->module_category}</label>
|
|
<div class="x_controls">
|
|
<select name="module_category_srl" id="module_category_srl">
|
|
<option value="" selected="selected">{$lang->keep_existing_value}</option>
|
|
<option value="0">{$lang->notuse}</option>
|
|
<option loop="$module_category => $key, $val" value="{$key}" selected="selected"|cond="$module_info->module_category_srl==$key">{$val->title}</option>
|
|
</select>
|
|
<p class="x_help-block" id="aboutCategory">{$lang->about_module_category}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="layout_srl">{$lang->layout}</label>
|
|
<div class="x_controls">
|
|
<select name="layout_srl" id="layout_srl">
|
|
<option value="" selected="selected">{$lang->keep_existing_value}</option>
|
|
<option value="0">{$lang->notuse}</option>
|
|
<option loop="$layout_list => $key, $val" value="{$val->layout_srl}" selected="selected"|cond="$module_info->layout_srl==$val->layout_srl">{$val->title}({$val->layout})</option>
|
|
</select>
|
|
<p class="x_help-block" id="aboutLayout">{$lang->about_layout}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group" cond="count($skin_list)">
|
|
<label class="x_control-label" for="skin">{$lang->skin}</label>
|
|
<div class="x_controls">
|
|
<select name="skin" id="skin">
|
|
<option value="" selected="selected">{$lang->keep_existing_value}</option>
|
|
<option loop="$skin_list => $key,$val" value="{$key}" selected="selected"|cond="$module_info->skin==$key">{$val->title}</option>
|
|
</select>
|
|
<p class="x_help-block" id="aboutSkin">{$lang->about_skin}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="header_text">{$lang->header_text}</label>
|
|
<div class="x_controls">
|
|
<textarea name="header_text" id="header_text" rows="4" cols="42" class="x_full-width x_code-font">{htmlspecialchars($module_info->header_text, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}</textarea>
|
|
<p class="x_help-block" id="aboutHeaderText">{$lang->about_header_text}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="footer_text">{$lang->footer_text}</label>
|
|
<div class="x_controls">
|
|
<textarea name="footer_text" rows="4" cols="42" class="x_full-width x_code-font">{htmlspecialchars($module_info->footer_text, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}</textarea>
|
|
<p class="x_help-block" id="aboutFooterText">{$lang->about_footer_text}</p>
|
|
</div>
|
|
</div>
|
|
<div class="x_control-group">
|
|
<label class="x_control-label" for="description">{$lang->description}</label>
|
|
<div class="x_controls">
|
|
<textarea name="description" id="description" rows="4" cols="42">{htmlspecialchars($module_info->description, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}</textarea>
|
|
<p class="x_help-block" id="aboutDescription">{$lang->about_description}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="x_modal-footer">
|
|
<input type="submit" class="x_btn x_btn-primary" value="{$lang->cmd_registration}" />
|
|
</div>
|
|
|
|
</form>
|