mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 17:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11633 201d5d3c-b55e-5fd7-737f-ddc643e51545
76 lines
3 KiB
HTML
76 lines
3 KiB
HTML
<load target="js/communication_admin.js" usecdn="true" />
|
|
<load target="../../editor/tpl/js/editor_module_config.js" usecdn="true" />
|
|
<div class="x_page-header"><h1>{$lang->communication} {$lang->cmd_management}</h1></div>
|
|
<p>{nl2br($lang->about_communication)}</p>
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="insertConfig" action="./" method="post">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAdminInsertConfig">
|
|
<div class="x_clearfix">
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<tr>
|
|
<th>{$lang->editor_skin}</th>
|
|
<td>
|
|
<select name="editor_skin" onchange="getEditorSkinColorList(this.value)">
|
|
<!--@foreach($editor_skin_list as $editor_skin)-->
|
|
<option value="{$editor_skin}" <!--@if($editor_skin==$communication_config->editor_skin)-->selected="selected"<!--@end-->>{$editor_skin}</option>
|
|
<!--@end-->
|
|
</select>
|
|
<select name="editor_colorset" id="sel_editor_colorset" style="display:none">
|
|
</select>
|
|
<script>//<![CDATA[
|
|
getEditorSkinColorList('{$communication_config->editor_skin}','{$communication_config->editor_colorset}');
|
|
//]]></script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->layout}</th>
|
|
<td>
|
|
<select id="layout" name="layout_srl">
|
|
<option value="0">{$lang->notuse}</option>
|
|
<option loop="$layout_list => $key,$val" value="{$val->layout_srl}" selected="selected"|cond="$val->layout_srl == $communication_config->layout_srl">{$val->title} ({$val->layout})</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->skin}</th>
|
|
<td>
|
|
<select name="skin" onchange="doGetSkinColorset(this.options[this.selectedIndex].value);return false;">
|
|
<!--@foreach($communication_skin_list as $key=>$val)-->
|
|
<option value="{$key}" <!--@if($key==$communication_config->skin)-->selected="selected"<!--@end-->>{$val->title}</option>
|
|
<!--@end-->
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->colorset}</th>
|
|
<td><div id="communication_colorset"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->mobile_layout}</th>
|
|
<td>
|
|
<select id="layout" name="mlayout_srl">
|
|
<option value="0">{$lang->notuse}</option>
|
|
<option loop="$mlayout_list => $key,$val" value="{$val->layout_srl}" selected="selected"|cond="$val->layout_srl == $communication_config->mlayout_srl">{$val->title} ({$val->layout})</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->mobile_skin}</th>
|
|
<td>
|
|
<select name="mskin">
|
|
<option loop="$communication_mobile_skin_list => $key,$val" value="{$key}" selected="selected"|cond="$key==$communication_config->mskin" >{$val->title}</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="x_pull-right">
|
|
<input type="submit" value="{$lang->cmd_registration}" class="x_btn x_btn-large x_btn-primary"/>
|
|
</div>
|
|
</form>
|
|
<script>
|
|
jQuery(function() { doGetSkinColorset("{$communication_config->skin}"); });
|
|
</script>
|