mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-02-01 09:39:58 +09:00
cafeXE 개선
1. 게시판/페이지 외에 최고관리자가 지정한 서비스 모듈을 생성/관리 가능하도록 개선 2. 최고관리자는 기본 레이아웃/ 레이아웃 변경 기능 제한/ 카페별 서비스 모듈 생성 개수를 지정하는 기능 추가 3. 생성된 카페의 도메인/vid 등을 수정할 수 있는 기능 추가 4. 카페 관리자가 메뉴 추가시에 메뉴명과 서비스 모듈 종류만 지정하면 모듈이 생성되도록 개선 5. 가상사이트와 기본 사이트간의 모듈을 옮길 수 있는 기능 추가 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6171 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b2e0e09529
commit
5bb5fa23a8
68 changed files with 721 additions and 617 deletions
|
|
@ -1,5 +1,6 @@
|
|||
<!--%import("./js/homepage.js",optimized=false)-->
|
||||
<!--%import("./filter/insert_homepage.xml")-->
|
||||
<!--%import("./filter/insert_config.xml")-->
|
||||
|
||||
<h3 class="xeAdmin">{$lang->cafe} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
@ -30,7 +31,6 @@
|
|||
<!--@end-->
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
|
|
@ -49,8 +49,7 @@
|
|||
<div class="adminRightExtra">
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_homepage)" id="cafeFo">
|
||||
<h3 class="xeAdmin">{$lang->cmd_make_cafe}</h3>
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<caption> </caption>
|
||||
<table cellspacing="0" class="crossTable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"><div>{$lang->cafe_title}</div></th>
|
||||
|
|
@ -80,4 +79,60 @@
|
|||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_config)">
|
||||
<h3 class="xeAdmin">{$lang->cmd_setup}</h3>
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th colspan="2" scope="row"><div>{$lang->default_layout}</div></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<select name="default_layout">
|
||||
<option value="faceoff" <!--@if($homepage_config->default_layout=='faceoff')-->selected="selected"<!--@end--> >faceoff</option>
|
||||
<optgroup label="{$lang->downloaded_list}">
|
||||
<!--@foreach($layout_list as $key => $val)-->
|
||||
<option value="{$val->layout}" <!--@if($homepage_config->default_layout== $val->layout)-->selected="selected"<!--@end-->> <!--@if($val->title)-->{$val->title} ({$val->layout})<!--@else-->{$val->layout}<!--@end--></option>
|
||||
<!--@end-->
|
||||
</optgroup>
|
||||
</select>
|
||||
<p>{$lang->about_default_layout}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" colspan="2"><div>{$lang->enable_change_layout}</div></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="checkbox" name="enable_change_layout" value="Y" <!--@if($homepage_config->enable_change_layout=='Y')-->checked="checked"<!--@end-->/>
|
||||
<p>{$lang->about_change_layout}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row" colspan="2"><div>{$lang->allow_service}</div></th>
|
||||
</tr>
|
||||
<!--@foreach($service_modules as $k => $v)-->
|
||||
<!--@if($v->category == 'service' && $v->default_index_act)-->
|
||||
<tr>
|
||||
<td class="nowrap">{$v->title}</td>
|
||||
<td class="wide">
|
||||
<select name="allow_service_{$v->module}">
|
||||
<!--@for($i=0;$i<20;$i++)--><option value="{$i}" <!--@if($homepage_config->allow_service[$v->module]==$i)-->selected="selected"<!--@end-->>{$i}</option><!--@end-->
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<p>{$lang->about_allow_service}</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="row2" colspan="2">
|
||||
<td class="button"><span class="button black strong"><input type="submit" value="{$lang->cmd_save}" accesskey="s" /></span></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue