KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /home/queenjbs/xe/modules/board/skins/xe_official/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/queenjbs/xe/modules/board/skins/xe_official/_style.gallery.html
<form action="./" method="get" class="boardListForm">
    <fieldset>
        <legend>List of Articles</legend>

        <table cellspacing="0" border="1" summary="List of Articles" class="boardList">
			<thead>
				<tr>
					<!--// 목록 설정으로 table theader 생성 -->
					<!--@foreach($list_config as $key => $val)-->
						<!--// 기본 컨텐츠일 경우 -->
						<!--@if($val->idx == -1)-->
	
						<!--// 컨텐츠 종류에 따라서 출력 -->
						<!--@if($val->type == 'no')-->
							<th scope="col">{$lang->no}</th>
						<!--@elseif($val->type == 'title')-->
							<th scope="col" class="title">
								<!--@if($module_info->use_category == "Y")-->
								<span class="jumpTo">
									<select name="category" id="board_category">
										<option value="">{$lang->category}</option>
										<!--@foreach($category_list as $val)-->
										<option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="selected"<!--@end-->>{str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
										<!--@end-->
									</select>
									<button type="button" name="go_button" id="go_button" onclick="doChangeCategory(); return false;" class="button">Go</button>
								</span>
								<!--@end-->
								{$lang->title}
							</th>
						<!--@elseif($val->type == 'regdate')-->
							<th scope="col"><a href="{getUrl('sort_index','regdate','order_type',$order_type)}">{$lang->date}<!--@if($sort_index=='regdate')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
						<!--@elseif($val->type == 'last_update')-->
							<th scope="col"><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_update}<!--@if($sort_index=='last_update')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
						<!--@elseif($val->type == 'nick_name')-->
							<th scope="col">{$lang->writer}</th>
						<!--@elseif($val->type == 'user_id')-->
							<th scope="col">{$lang->user_id}</th>
						<!--@elseif($val->type == 'user_name')-->
							<th scope="col">{$lang->user_name}</th>
						<!--@elseif($val->type == 'readed_count')-->
							<th scope="col"><a href="{getUrl('sort_index','readed_count','order_type',$order_type)}">{$lang->readed_count}<!--@if($sort_index=='readed_count')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
						<!--@elseif($val->type == 'voted_count')-->
							<th scope="col"><a href="{getUrl('sort_index','voted_count','order_type',$order_type)}">{$lang->voted_count}<!--@if($sort_index=='voted_count')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
                        <!--@elseif($val->type == 'last_post')-->
                            <th scope="col"><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_post}<!--@if($sort_index=='last_update')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
						<!--@end-->
						<!--// 사용자 선언 확장변수일 경우 -->
						<!--@else-->
							<th scope="col">{$val->name}</th>
						<!--@end-->
					<!--@end-->
					<!--@if($grant->manager)--><th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll({ doClick:true }); return false;" title="Check All" /></th><!--@end-->
				</tr>
			</thead>
	
			<tbody>
	
				<!--@if(!$document_list && !$notice_list)-->
				<tr>
					<td colspan="<!--@if($grant->manager)-->{count($list_config)+1}<!--@else-->{count($list_config)}<!--@end-->">
						{$lang->no_documents}
					</td>
				</tr>
				<!--@else-->
			
				<!--@foreach($notice_list as $no => $document)-->
				<tr class="notice">
					<!--// 목록 설정으로 table theader 생성 -->
					<!--@foreach($list_config as $key => $val)-->
	
						<!--// 기본 컨텐츠일 경우 -->
						<!--@if($val->idx == -1)-->
	
							<!--// 컨텐츠 종류에 따라서 출력 -->
							<!--@if($val->type == 'no')-->
								<td class="notice"><!--@if($document_srl == $document->document_srl)-->&raquo;<!--@else-->{$lang->notice}<!--@end--></td>
							<!--@elseif($val->type == 'title')-->
								<td class="title">
									
									<!--@if($module_info->use_category == "Y" && $document->get('category_srl'))-->
									<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
									<!--@end-->
	
									<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
									{$document->printExtraImages(60*60*$module_info->duration_new)}
									
									<!--@if($document->getCommentCount())-->
										<a href="{getUrl('document_srl', $document->document_srl)}#comment"><span class="replyNum" title="Replies">[{$document->getCommentCount()}]</span></a>
									<!--@end-->
	
									<!--@if($document->getTrackbackCount())-->
										<a href="{getUrl('document_srl', $document->document_srl)}#trackback"><span class="trackbackNum" title="Trackbacks">[{$document->getTrackbackCount()}]</span></a>
									<!--@end-->
	
								</td>
							<!--@elseif($val->type == 'regdate')-->
								<td class="date">{$document->getRegdate('Y-m-d')}</td>
							<!--@elseif($val->type == 'last_update')-->
								<td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td>
							<!--@elseif($val->type == 'nick_name')-->
								<td class="author"><a href="#popup_menu_area" class="member_{$document->get('member_srl')}" onclick="return false">{$document->getNickName()}</a></td>
							<!--@elseif($val->type == 'user_id')-->
								<td class="author">{$document->getUserID()}</a></td>
							<!--@elseif($val->type == 'user_name')-->
								<td class="author">{$document->getUserName()}</a></td>
							<!--@elseif($val->type == 'readed_count')-->
								<td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td>
							<!--@elseif($val->type == 'voted_count')-->
								<td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td>
							<!--@elseif($val->type == 'last_post')-->
                                <td class="lastReply">
                                <!--@if((int)($document->get('comment_count'))>0)-->
                                    <a href="{$document->getPermanentUrl()}#comment" class="replyAnchor">{zdate($document->get('last_update'),'Y-m-d')} {zdate($document->get('last_update'),'H:i')}</a>
                                    <!--@if($document->get('last_updater'))-->
                                        <sub class="by">by</sub>
                                        {htmlspecialchars($document->get('last_updater'))}
                                    <!--@end-->
                                <!--@else-->
                                    &nbsp;
                                <!--@end-->
                                </td>
							<!--@end-->
	
						<!--// 사용자 선언 확장변수일 경우 -->
						<!--@else-->
								<td>{$document->getExtraValueHTML($val->idx)}&nbsp;</td>
						<!--@end-->
					<!--@end-->
					<!--@if($grant->manager)-->
						<td class="check"><input type="checkbox" name="cart" value="{$document->document_srl}" title="Check this" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td>
					<!--@end-->
				</tr>
				<!--@end-->
	
			<!--@end-->
			</tbody>
        </table>

		<!--@if(count($document_list))-->
            {@$_height = count($list_config)*18}
            <!--@if($list_config['thumbnail'])--> {@$_height += $module_info->thumbnail_height }<!--@end-->
            <!--@if($list_config['summary'])--> {@$_height += 60 }<!--@end-->
            <!--@if($list_config['last_post'])--> {@$_height += 30 }<!--@end-->

		<ul class="boardList thumbList">

			<!--@foreach($document_list as $no => $document)-->
			<!--@if(!$document->isNotice())-->

			<li style="width:{$module_info->thumbnail_width+18}px;height:{$_height}px;">
			
                {@$_meta_display = false}
                <!--@foreach($list_config as $key => $val)-->
                    <!--// 기본 컨텐츠일 경우 -->
                    <!--@if($val->idx == -1)-->
                        <!--@if($val->type == 'no')-->
                            <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                            <p class="num"><!--@if($document_srl == $document->document_srl)-->&raquo;<!--@else-->{$no}<!--@end--></p>

                        <!--@elseif($val->type == 'thumbnail')-->
                            <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                            <div class="thumb">
                                <!--@if($document->thumbnailExists($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
                                    <a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage','')}"><img src="{$document->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}" alt=""/><!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--><strong class="category">{$category_list[$document->get('category_srl')]->title}</strong><!--@end--></a>
                                <!--@else-->
                                    <a href="{getUrl('document_srl',$document->document_srl,'listStyle',$listStyle, 'cpage','')}"><span class="noPhoto" style="width:{$module_info->thumbnail_width}px; height:{$module_info->thumbnail_height}px; line-height:{$module_info->thumbnail_height}px;">No Image</span><!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--><strong class="category">{$category_list[$document->get('category_srl')]->title}</strong><!--@end--></a>
                                <!--@end-->
                            </div>
                        <!--@elseif($val->type == 'title')-->
                            <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                            <div class="title">
                                <!--@if($grant->manager)-->
                                    <input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /> 
                                <!--@end-->

                                <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
								{$document->printExtraImages(60*60*$module_info->duration_new)}	

                                <!--@if($document->getCommentCount())-->
                                    <span class="replyNum" title="Replies">[{$document->getCommentCount()}]</span>
                                <!--@end-->

                                <!--@if($document->getTrackbackCount())-->
                                    <span class="trackbackNum" title="Trackbacks">[{$document->getTrackbackCount()}]</span>
                                <!--@end-->
                            </div>
                        <!--@elseif($val->type == 'summary')-->
                            <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                            <p class="summary"><a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getSummary(50)}</a></p>
                        <!--@elseif($val->type == 'last_post' && $document->get('comment_count')>0)-->
                            <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                            <div class="lastReply">
                                <a href="{$document->getPermanentUrl()}#comment" class="replyAnchor">{zdate($document->get('last_update'),'Y-m-d')} {zdate($document->get('last_update'),'H:i')}</a>
                                <!--@if($document->get('last_updater'))-->
                                    <sub class="by">by</sub>
                                    {htmlspecialchars($document->get('last_updater'))}
                                <!--@end-->
                            </div>
                        <!--@else-->
                            <!--@if(!$_meta_display)--><ul class="meta">{@$_meta_display = true}<!--@end-->
                            <!--@if($val->type == 'regdate')-->
                                <li class="date">{$document->getRegdate('Y-m-d')}</li>
                            <!--@elseif($val->type == 'last_update')-->
                                <li class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</li>
                            <!--@elseif($val->type == 'nick_name')-->
                                <li class="author"><!--<a href="#popup_menu_area" class="member_{$document->get('member_srl')}" onclick="return false">{$document->getNickName()}</a>-->
																<span class="">{$document->getNickName()}</span>
																</li>
                            <!--@elseif($val->type == 'user_id')-->
                                <li class="author">{$document->getUserID()}</a></li>
                            <!--@elseif($val->type == 'user_name')-->
                                <li class="author">{$document->getUserName()}</a></li>
                            <!--@elseif($val->type == 'readed_count')-->
                                <li class="reading">{$lang->readed_count} {$document->get('readed_count')>0?$document->get('readed_count'):'0'}</li>
                            <!--@elseif($val->type == 'voted_count')-->
                                <li class="recommend">{$lang->voted_count} {$document->get('voted_count')!=0?$document->get('voted_count'):'0'}</li>
                            <!--@end-->
                        <!--@end-->
                    <!--@else-->
                        <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
                        <p class="title"><span class="category">{$val->name}</span> {$document->getExtraValueHTML($val->idx)}&nbsp;</p>
                    <!--@end-->
                <!--@end-->
                <!--@if($_meta_display)--></ul>{@$_meta_display = false}<!--@end-->
			</li>
			<!--@end-->
			<!--@end-->
		</ul>
		
        <!--@end-->
        
    </fieldset>
</form>

Anon7 - 2021