mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11580 201d5d3c-b55e-5fd7-737f-ddc643e51545
67 lines
2.7 KiB
HTML
67 lines
2.7 KiB
HTML
<load target="js/communication_admin.js" usecdn="true" />
|
|
<load target="../../editor/tpl/js/editor_module_config.js" usecdn="true" />
|
|
<h1 class="h1">{$lang->communication} <em>{$lang->cmd_management}</em></h1>
|
|
<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" class="form">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAdminInsertConfig">
|
|
<div class="table">
|
|
<table width="100%" border="1" cellspacing="0">
|
|
<tr>
|
|
<th scope="row">{$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 scope="row">{$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 scope="row">{$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 scope="row">{$lang->colorset}</th>
|
|
<td><div id="communication_colorset"></div></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{$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="btnArea">
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
|
|
</div>
|
|
</form>
|
|
<script>
|
|
jQuery(function() { doGetSkinColorset("{$communication_config->skin}"); });
|
|
</script>
|