rhymix/modules/homepage/tpl/mid_list.html
zero 5bb5fa23a8 cafeXE 개선
1. 게시판/페이지 외에 최고관리자가 지정한 서비스 모듈을 생성/관리 가능하도록 개선
2. 최고관리자는 기본 레이아웃/ 레이아웃 변경 기능 제한/ 카페별 서비스 모듈 생성 개수를 지정하는 기능 추가
3. 생성된 카페의 도메인/vid 등을 수정할 수 있는 기능 추가
4. 카페 관리자가 메뉴 추가시에 메뉴명과 서비스 모듈 종류만 지정하면 모듈이 생성되도록 개선
5. 가상사이트와 기본 사이트간의 모듈을 옮길 수 있는 기능 추가


git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6171 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-04-22 10:38:47 +00:00

51 lines
2.3 KiB
HTML

<!--#include("_header.html")-->
<h4 class="xeAdmin">{$lang->cmd_admin_menus[$act]}</h4>
<p class="summary">{$lang->about_cafe_act[$act]}</p>
<table cellspacing="0" class="rowTable">
<thead>
<tr>
<th scope="col"><div>{$lang->module}</div></th>
<th scope="col" class="half_wide"><div>{$lang->mid}</div></th>
<th scope="col" class="half_wide"><div>{$lang->browser_title}</div></th>
<th scope="col"><div>{$lang->regdate}</div></th>
<th scope="col"><div>{$lang->cmd_setup}</div></th>
</tr>
</thead>
<tbody>
<!--@foreach($mid_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="nowrap">{Context::getLang($val->module)}</td>
<td class="nowrap"><a href="{getSiteUrl($site_module_info->domain,'','mid',$val->mid)}" onclick="window.open(this.href); return false;">{htmlspecialchars($val->mid)}</a></td>
<td class="wide"><a href="{getSiteUrl($site_module_info->domain,'','mid',$val->mid)}" onclick="window.open(this.href); return false;">{$val->browser_title}</a></td>
<td class="nowrap">{zdate($val->regdate,"Y-m-d")}</td>
<td><a href="{getUrl('act',$val->setup_index_act,'mid',$val->mid)}" onclick="winopen(this.href,'cafeXEMidSetup');return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_setup}</span></a></td>
</tr>
<!--@end-->
</tbody>
</table>
</form>
<!--@if($logged_info->is_admin == 'Y')-->
<!--%import("filter/export_module.xml")-->
<div class="fl">
<form method="post" action="./" id="foImport" onsubmit="return procFilter(this,export_module);">
<select name="export_module_srl">
<!--@foreach($mid_list as $no => $val)-->
<option value="{$val->module_srl}">{$val->browser_title}</option>
<!--@end-->
</select>
<span class="button black"><input type="submit" value="{$lang->cmd_export}" /></span>
</form>
</div>
<div class="fr">
<form method="post" action="./" id="foImport">
<input type="hidden" name="site_srl" value="{$site_module_info->site_srl}" />
<a href="#" onclick="importModule('import_module_srl'); return false;" class="button black"><span>{$lang->cmd_import}</span></a>
</form>
</div>
<p class="clear summary" style="padding-top:10px;">{$lang->about_move_module}</p>
<!--@end-->
<!--#include("_footer.html")-->