123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- $show_dialog = 1;
- include $this->admin_tpl('header','admin');
- ?>
- <div class="pad-lr-10">
- <form name="searchform" id="searchform" action="?m=admin&c=ipbanned&a=search_ip&menuid=<?php echo $_GET['menuid'];?>" method="get" >
- <input type="hidden" value="admin" name="m">
- <input type="hidden" value="ipbanned" name="c">
- <input type="hidden" value="search_ip" name="a">
- <table width="100%" cellspacing="0" class="search-form">
- <tbody>
- <tr>
- <td><div class="explain-col">IP: <input type="text" value="" class="input-text" id="ip" name="search[ip]"> <input type="submit" value="<?php echo L('search')?>" class="button" name="dosubmit">
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- <form name="myform" id="myform" action="?m=admin&c=ipbanned&a=delete" method="post" onsubmit="checkuid();return false;">
- <div class="table-list">
- <table width="100%" cellspacing="0">
- <thead>
- <tr>
- <th width="35" align="center"><input type="checkbox" value="" id="check_box" onclick="selectall('ipbannedid[]');"></th>
- <th width="30%">IP</th>
- <th ><?php echo L('deblocking_time')?></th>
- <th width="120"><?php echo L('operations_manage')?></th>
- </tr>
- </thead>
- <tbody>
- <?php
- if(is_array($infos)){
- foreach($infos as $info){
- ?>
- <tr>
- <td align="center">
- <input type="checkbox" name="ipbannedid[]" value="<?php echo $info['ipbannedid']?>">
- </td>
- <td width="30%" align="left"><span class="<?php echo $info['style']?>"><?php echo $info['ip']?></span> </td>
- <td align="center"><?php echo date('Y-m-d', $info['expires']);?></td>
- <td align="center"><a href="javascript:confirmurl('?m=admin&c=ipbanned&a=delete&ipbannedid=<?php echo $info['ipbannedid']?>', '<?php echo L('confirm', array('message' => L('selected')))?>')"><?php echo L('delete')?></a> </td>
- </tr>
- <?php
- }
- }
- ?></tbody>
- </table>
- <div class="btn">
- <a href="#" onClick="javascript:$('input[type=checkbox]').attr('checked', true)"><?php echo L('selected_all')?></a>/<a href="#" onClick="javascript:$('input[type=checkbox]').attr('checked', false)"><?php echo L('cancel')?></a>
- <input type="submit" name="submit" class="button" value="<?php echo L('remove_all_selected')?>" onClick="return confirm('<?php echo L('confirm', array('message' => L('selected')))?>')" />
- </div>
- <div id="pages"><?php echo $pages?></div>
- </div>
- </form></div>
- </body>
- </html>
- <script type="text/javascript">
- function checkuid() {
- var ids='';
- $("input[name='ipbannedid[]']:checked").each(function(i, n){
- ids += $(n).val() + ',';
- });
- if(ids=='') {
- window.top.art.dialog({content:"<?php echo L('before_select_operation')?>",lock:true,width:'200',height:'50',time:1.5},function(){});
- return false;
- } else {
- myform.submit();
- }
- }
- function checkSubmit()
- {
- if (searchform.ip.value=="")
- {
- searchform.ip.focus();
- alert("<?php echo L('parameters_error')?>");
- return false;
- }
- else
- {
- if(searchform.ip.value.split(".").length!=4)
- {
- searchform.ip.focus();
- alert("<?php echo L('ip_type_error')?>");
- return false;
- }
- else
- {
- for(i=0;i<searchform.ip.value.split(".").length;i++)
- {
- var ipPart;
- ipPart=searchform.ip.value.split(".")[i];
- if(isNaN(ipPart) || ipPart=="" || ipPart==null)
- {
- searchform.ip.focus();
- alert("<?php echo L('ip_type_error')?>");
- return false;
- }
- else
- {
- if(ipPart/1>255 || ipPart/1<0)
- {
- searchform.ip.focus();
- alert("<?php echo L('ip_type_error')?>");
- return false;
- }
- }
- }
- }
- }
- }
- </script>
|