rhymix/modules/module/tpl/filebox_list.html
zero 6ad50ef1a7 1. vid 기반의 가상 사이트에서 팝업등의 기능 윈도우가 열릴때 권한이 승계되지 않는 문제 수정
(위젯의 대상 모듈 선택등)
2. 가상사이트 관리자의 경우 모든 메뉴의 그룹 선택과 상관없이 보이도록 수정.
3. 위젯스타일의 이미지(파일박스) 등록시 가상사이트 권한을 받도록 수정


git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6132 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-04-16 07:53:11 +00:00

65 lines
3.3 KiB
HTML

<!--%load_js_plugin("filebox")-->
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->filebox}</h3>
</div>
<div id="popBody">
<table class="rowTable" cellspacing="0" width="90%">
<thead>
<tr>
<th><div>{$lang->file}</div></th>
<th><div>{$lang->description}</div></th>
<th><div>{$lang->regdate}</div></th>
<th><div>&nbsp;</div></th>
</tr>
</thead>
<tbody>
<!--@foreach($filebox_list as $key=>$val)-->
<tr>
<td>
<div id="filebox_preview_{$val->module_filebox_srl}">
<!--@if($val->fileextension=='swf')-->
<object height="100" width="100" flashvars="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" xmlns="http://www.w3.org/1999/xhtml">
<param value="{getUrl('')}{$val->filename}" name="movie" xmlns="http://www.w3.org/1999/xhtml" />
<param value="transparent" name="wmode" xmlns="http://www.w3.org/1999/xhtml" />
<param value="sameDomain" name="allowScriptAccess" xmlns="http://www.w3.org/1999/xhtml" />
<param value="high" name="quality" xmlns="http://www.w3.org/1999/xhtml" />
<embed height="100" width="100" wmode="transparent" flashvars="" autostart="false" src="{getUrl('')}{$val->filename}" xmlns="http://www.w3.org/1999/xhtml" />
</object>
<!--@elseif(in_array($val->fileextension,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$val->filename}" width="100" height="100" />
<!--@end-->
</div>
</td>
<td class="wide">{$val->comment}&nbsp;</td>
<td class="nowrap">{zdate($val->regdate,'Y-m-d H:i')}</td>
<td>
<!--@if(!$filter || (is_array($arrfilter) && in_array($val->fileextension,$arrfilter)))-->
<span class="small button black"><button type="button" onclick="XE.filebox.selectFile('{getUrl('')}{$val->filename}','{$val->module_filebox_srl}');">{$lang->cmd_select}</button></span>
<!--@end-->
<span class="small button"><button type="button" onclick="XE.filebox.deleteFile('{$val->module_filebox_srl}');">{$lang->cmd_delete}</button></span>
</td>
</tr>
<!--@end-->
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<div class="pagination a1">
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
<!--@else-->
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
</div>
</div>
<div id="popFooter">
<a href="{getUrl('','module','module','act','dispModuleFileBoxAdd','filter',$filter,'input',$input)}" class="button black"><span>{$lang->cmd_registration}</span></a>
</div>