|
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/poll/tpl/filter/","delete_checked.xml");
$oXmlFilter->compile();
?>
<!--Meta:modules/poll/tpl/js/poll_admin.js--><?php Context::addJsFile("modules/poll/tpl/js/poll_admin.js", true, ""); ?>
<?php
$oTemplate = &TemplateHandler::getInstance();
print $oTemplate->compile('./modules/poll/tpl/','header.html');
?>
<form action="./" method="get" onsubmit="return procFilter(this, delete_checked)" id="fo_list">
<input type="hidden" name="page" value="<?php @print($__Context->page);?>" />
<!-- 목록 -->
<table cellspacing="0" class="crossTable">
<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->title);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->poll_checkcount);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->poll_join_count);?></div></th>
<th scope="col"><div><?php @print($__Context->lang->regdate);?></div></th>
<th scope="col"><div> </div></th>
</tr>
</thead>
<tbody>
<?php $Context->__idx[0]=0;if(count($__Context->poll_list)) foreach($__Context->poll_list as $__Context->no => $__Context->val){$__Context->__idx[1]=($__Context->__idx[1]+1)%2; $__Context->cycle_idx = $__Context->__idx[1]+1; ?>
<tr class="row<?php @print($__Context->cycle_idx);?>">
<td class="number center"><?php @print($__Context->no);?></td>
<td class="center"><input type="checkbox" name="cart" value="<?php @print($__Context->val->poll_index_srl);?>" /></td>
<td><a href="#" onclick="doMovePoll(<?php @print($__Context->val->poll_srl);?>,<?php @print($__Context->val->upload_target_srl);?>);return false;"><?php @print(htmlspecialchars($__Context->val->title));?></a></td>
<td class="number center"><?php @print($__Context->val->checkcount);?></td>
<td class="number center"><?php @print($__Context->val->poll_count);?></td>
<td class="date nowrap center"><?php @print(zdate($__Context->val->regdate,"Y-m-d H:i"));?></td>
<td class="center nowrap view"><a href="<?php @print(getUrl('','module','poll','act','dispPollAdminResult','poll_srl',$__Context->val->poll_srl,'poll_index_srl',$__Context->val->poll_index_srl));?>" onclick="popopen(this.href); return false;" title="<?php @print(htmlspecialchars($__Context->lang->cmd_view));?>"><?php @print($__Context->lang->cmd_view);?></a></td>
</tr>
<?php } ?>
</tbody>
</table>
<!-- 버튼 -->
<div class="clear">
<div class="fl">
<a href="javascript:XE.checkboxToggleAll({ checked:false })" class="button"><span><?php @print($__Context->lang->cmd_unselect_all);?></span></a>
<a href="javascript:XE.checkboxToggleAll()" class="button"><span><?php @print($__Context->lang->cmd_reverse_all);?></span></a>
</div>
<div class="fr">
<span class="button black strong"><input type="submit" value="<?php @print($__Context->lang->cmd_delete_checked_poll);?>" /></span>
</div>
</div>
</form>
<!-- 페이지 네비게이션 -->
<div class="pagination a1">
<a href="<?php @print(getUrl('page','','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',''));?>"><?php @print($__Context->page_no);?></a>
<?php } ?>
<?php } ?>
<a href="<?php @print(getUrl('page',$__Context->page_navigation->last_page,'module_srl',''));?>" class="nextEnd"><?php @print($__Context->lang->last_page);?></a>
</div>
<!-- 검색 -->
<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);?>" />
<fieldset>
<select name="search_target">
<option value=""><?php @print($__Context->lang->search_target);?></option>
<?php $Context->__idx[1]=0;if(count($__Context->lang->search_target_list)) foreach($__Context->lang->search_target_list as $__Context->key => $__Context->val){$__Context->__idx[2]=($__Context->__idx[2]+1)%2; $__Context->cycle_idx = $__Context->__idx[2]+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"><input type="submit" value="<?php @print($__Context->lang->cmd_search);?>" /></span>
<a href="<?php @print(getUrl('','module',$__Context->module,'act',$__Context->act));?>" class="button"><span><?php @print($__Context->lang->cmd_cancel);?></span></a>
</fieldset>
</form>