1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- include $this->admin_tpl('header', 'admin');
- ?>
- <div class="pad-lr-10">
- <form name="myform" action="?m=announce&c=admin_announce&a=listorder" method="post">
- <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('aid[]');"></th>
- <th align="center"><?php echo L('title')?></th>
- <th width="68" align="center"><?php echo L('startdate')?></th>
- <th width='68' align="center"><?php echo L('enddate')?></th>
- <th width='68' align="center"><?php echo L('inputer')?></th>
- <th width="50" align="center"><?php echo L('hits')?></th>
- <th width="120" align="center"><?php echo L('inputtime')?></th>
- <th width="69" align="center"><?php echo L('operations_manage')?></th>
- </tr>
- </thead>
- <tbody>
- <?php
- if(is_array($data)){
- foreach($data as $announce){
- ?>
- <tr>
- <td align="center">
- <input type="checkbox" name="aid[]" value="<?php echo $announce['aid']?>">
- </td>
- <td><?php echo $announce['title']?></td>
- <td align="center"><?php echo $announce['starttime']?></td>
- <td align="center"><?php echo $announce['endtime']?></td>
- <td align="center"><?php echo $announce['username']?></td>
- <td align="center"><?php echo $announce['hits']?></td>
- <td align="center"><?php echo date('Y-m-d H:i:s', $announce['addtime'])?></td>
- <td align="center">
- <?php if ($_GET['s']==1) {?><a href="?m=announce&c=index&a=show&aid=<?php echo $announce['aid']?>" title="<?php echo L('preview')?>" target="_blank"><?php }?><?php echo L('index')?><?php if ($_GET['s']==1) {?></a><?php }?> |
- <a href="javascript:edit('<?php echo $announce['aid']?>', '<?php echo safe_replace($announce['title'])?>');void(0);"><?php echo L('edit')?></a>
- </td>
- </tr>
- <?php
- }
- }
- ?>
- </tbody>
- </table>
-
- <div class="btn"><label for="check_box"><?php echo L('selected_all')?>/<?php echo L('cancel')?></label>
- <?php if($_GET['s']==1) {?><input name='submit' type='submit' class="button" value='<?php echo L('cancel_all_selected')?>' onClick="document.myform.action='?m=announce&c=admin_announce&a=public_approval&passed=0'"><?php } elseif($_GET['s']==2) {?><input name='submit' type='submit' class="button" value='<?php echo L('pass_all_selected')?>' onClick="document.myform.action='?m=announce&c=admin_announce&a=public_approval&passed=1'"><?php }?>
- <input name="submit" type="submit" class="button" value="<?php echo L('remove_all_selected')?>" onClick="document.myform.action='?m=announce&c=admin_announce&a=delete';return confirm('<?php echo L('affirm_delete')?>')"> </div> </div>
- <div id="pages"><?php echo $this->db->pages;?></div>
- </form>
- </div>
- </body>
- </html>
- <script type="text/javascript">
- function edit(id, title) {
- window.top.art.dialog({id:'edit'}).close();
- window.top.art.dialog({title:'<?php echo L('edit_announce')?>--'+title, id:'edit', iframe:'?m=announce&c=admin_announce&a=edit&aid='+id ,width:'700px',height:'500px'}, function(){var d = window.top.art.dialog({id:'edit'}).data.iframe;
- var form = d.document.getElementById('dosubmit');form.click();return false;}, function(){window.top.art.dialog({id:'edit'}).close()});
- }
- </script>
|