|
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
$oTemplate = &TemplateHandler::getInstance();
print $oTemplate->compile('./modules/member/tpl/','header.html');
?>
<?php
require_once("./classes/xml/XmlJsFilter.class.php");
$oXmlFilter = new XmlJSFilter("modules/member/tpl/filter/","insert_denied_id.xml");
$oXmlFilter->compile();
?>
<?php
require_once("./classes/xml/XmlJsFilter.class.php");
$oXmlFilter = new XmlJSFilter("modules/member/tpl/filter/","update_denied_id.xml");
$oXmlFilter->compile();
?>
<!-- 금지아이디의 삭제와 관련된 form -->
<form id="fo_denied_id_info" action="./" method="get">
<input type="hidden" name="user_id" value="" />
<input type="hidden" name="mode" value="" />
</form>
<!-- 목록 -->
<table cellspacing="0" class="rowTable">
<thead>
<tr>
<th scope="col"><div><?php @print($__Context->lang->no);?></div></th>
<th scope="col" class="half_wide"><div><?php @print($__Context->lang->user_id);?></div></th>
<th scope="col" class="half_wide"><div><?php @print($__Context->lang->description);?></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->member_list)) foreach($__Context->member_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><?php @print($__Context->no);?></td>
<td><?php @print($__Context->val->user_id);?></td>
<td><?php @print($__Context->val->description);?> </td>
<td><?php @print(zdate($__Context->val->regdate,"Y-m-d"));?></td>
<td><a href="#" onclick="doUpdateDeniedID('<?php @print($__Context->val->user_id);?>','delete','<?php @print($__Context->lang->confirm_delete);?>');return false;" title="<?php @print($__Context->lang->cmd_delete);?>" class="buttonSet buttonDelete"><span><?php @print($__Context->lang->cmd_delete);?></span></a></td>
</tr>
<?php } ?>
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<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" onsubmit="return procFilter(this, insert_denied_id)">
<input type="hidden" name="page" value="<?php @print($__Context->page);?>" />
<div>
<table cellspacing="0" class="rowTable">
<tr>
<th scope="row"><div><?php @print($__Context->lang->user_id);?></div></th>
<td class="wide"><input type="text" name="user_id" class="inputTypeText w400" /></td>
</tr>
<tr>
<th scope="row"><div><?php @print($__Context->lang->description);?></div></th>
<td class="left"><textarea name="description" class="inputTypeTextArea w400"></textarea></td>
</tr>
<tr>
<th colspan="2" class="button">
<span class="button black strong"><input type="submit" value="<?php @print($__Context->lang->cmd_registration);?>" accesskey="s" /></span>
</th>
</tr>
</table>
</div>
</form>