회원/ 커뮤니케이션 모듈의 에디터 설정에서 컬러셋을 지정할 수 있게 하여 모듈 스킨과 잘 어울리는 에디터가 나타나도록 설정 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4985 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-11-26 03:54:57 +00:00
parent c400e919b7
commit 93f25957db
6 changed files with 20 additions and 4 deletions

View file

@ -1,4 +1,5 @@
<!--%import("js/communication_admin.js")-->
<!--%import("../../editor/tpl/js/editor_module_config.js",optimized=false)-->
<!--%import("filter/insert_config.xml")-->
<h3>{$lang->communication} <span class="gray">{$lang->cmd_management}</span></h3>
@ -11,11 +12,16 @@
<tr class="row2">
<th scope="row"><div>{$lang->editor_skin}</div></th>
<td>
<select name="editor_skin">
<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 "text/javascript">//<![CDATA[
getEditorSkinColorList('{$communication_config->editor_skin}','{$communication_config->editor_colorset}');
//]]></script>
</td>
</tr>