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/branches/1.5.0@9723 201d5d3c-b55e-5fd7-737f-ddc643e51545
50 lines
2.1 KiB
HTML
50 lines
2.1 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->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 type="text/javascript">//<![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>
|
|
</table>
|
|
</div>
|
|
<div class="btnArea">
|
|
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
|
|
</div>
|
|
</form>
|
|
<script type="text/javascript">
|
|
jQuery(function() { doGetSkinColorset("{$communication_config->skin}"); });
|
|
</script>
|