|
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/files/cache/template_compiled/ |
Upload File : |
<?php if(!defined("__ZBXE__")) exit();?>
<?php
require_once("./classes/xml/XmlJsFilter.class.php");
$oXmlFilter = new XmlJSFilter("modules/comment/tpl/filter/","delete_checked.xml");
$oXmlFilter->compile();
?>
<?php
$oTemplate = &TemplateHandler::getInstance();
print $oTemplate->compile('./modules/comment/tpl/','header.html');
?>
<!-- 검색 -->
<div class="fl">
<form action="./" method="get" class="adminSearch">
<input type="hidden" name="module" value="<?php @print($__Context->module);?>" />
<input type="hidden" name="act" value="<?php @print($__Context->act);?>" />
<input type="hidden" name="module_srl" value="<?php @print($__Context->module_srl);?>" />
<fieldset>
<select name="search_target">
<option value=""><?php @print($__Context->lang->search_target);?></option>
<?php $Context->__idx[0]=0;if(count($__Context->lang->search_target_list)) foreach($__Context->lang->search_target_list as $__Context->key => $__Context->val){$__Context->__idx[1]=($__Context->__idx[1]+1)%2; $__Context->cycle_idx = $__Context->__idx[1]+1; ?>
<option value="<?php @print($__Context->key);?>" <?php if($__Context->search_target==$__Context->key){ ?>selected="selected"<?php } ?>><?php @print($__Context->val);?></option>
<?php } ?>
</select>
<input type="text" name="search_keyword" value="<?php @print(htmlspecialchars($__Context->search_keyword));?>" class="inputTypeText" />
<span class="button blue"><input type="submit" value="<?php @print($__Context->lang->cmd_search);?>" /></span>
<a href="<?php @print(getUrl('','module',$__Context->module,'act',$__Context->act));?>" class="button black"><span><?php @print($__Context->lang->cmd_cancel);?></span></a>
</fieldset>
</form>
</div>
<form id="fo_list" action="./" method="get" onsubmit="return procFilter(this, delete_checked)">
<input type="hidden" name="page" value="<?php @print($__Context->page);?>" />
<!-- 모듈 선택 -->
<div class="fr">
<a href="<?php @print(getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single'));?>" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span><?php @print($__Context->lang->cmd_find_module);?></span></a>
<span class="button red"><input type="submit" value="<?php @print($__Context->lang->cmd_delete_checked_comment);?>" /></span>
</div>
<!-- 목록 -->
<table cellspacing="0" class="crossTable clear">
<caption>Total <?php @print(number_format($__Context->total_count));?>, Page <?php @print(number_format($__Context->page));?>/<?php @print(number_format($__Context->total_page));?></caption>
<thead>
<tr>
<th scope="col"><div><?php @print($__Context->lang->no);?></div></th>
<th scope="col"><div><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></div></th>
<th scope="col" class="wide"><div><?php @print($__Context->lang->comment);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->nick_name);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->date);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->ipaddress);?></div></th>
</tr>
</thead>
<tbody>
<?php $Context->__idx[1]=0;if(count($__Context->comment_list)) foreach($__Context->comment_list as $__Context->no => $__Context->val){$__Context->__idx[2]=($__Context->__idx[2]+1)%2; $__Context->cycle_idx = $__Context->__idx[2]+1; ?>
<tr>
<td class="number center"><?php @print($__Context->no);?></td>
<td class="center"><input type="checkbox" name="cart" value="<?php @print($__Context->val->comment_srl);?>" /></td>
<td class="left"><a href="<?php @print(getUrl('','document_srl',$__Context->val->document_srl));?>#comment_<?php @print($__Context->val->comment_srl);?>" onclick="window.open(this.href);return false;"><?php @print(cut_str(htmlspecialchars(strip_tags($__Context->val->content)),200,'...'));?></a></td>
<td class="nowrap"><span class="member_<?php @print($__Context->val->member_srl);?>"><?php @print(htmlspecialchars($__Context->val->nick_name));?></span></td>
<td class="date center nowrap"><?php @print((zdate($__Context->val->regdate,"Y-m-d\nH:i:s")));?></td>
<td class="number left nowrap"><a href="<?php @print(getUrl('search_target','ipaddress','search_keyword',$__Context->val->ipaddress));?>"><?php @print($__Context->val->ipaddress);?></a></td>
</tr>
<?php } ?>
</tbody>
</table>
</form>
<!-- 페이지 네비게이션 -->
<div class="pagination a1">
<a href="<?php @print(getUrl('page','','module_srl',$__Context->module_srl));?>" class="prevEnd"><?php @print($__Context->lang->first_page);?></a>
<?php while($__Context->page_no = $__Context->page_navigation->getNextPage()){ ?>
<?php if($__Context->page == $__Context->page_no){ ?>
<strong><?php @print($__Context->page_no);?></strong>
<?php }else{ ?>
<a href="<?php @print(getUrl('page',$__Context->page_no,'module_srl',$__Context->module_srl));?>"><?php @print($__Context->page_no);?></a>
<?php } ?>
<?php } ?>
<a href="<?php @print(getUrl('page',$__Context->page_navigation->last_page,'module_srl',$__Context->module_srl));?>" class="nextEnd"><?php @print($__Context->lang->last_page);?></a>
</div>