123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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="myform" action="?m=message&c=message&a=delete_outbox" 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('messageid[]');"></th>
- <th><?php echo L('subject')?></th>
- <th width="35%" align="center"><?php echo L('content')?></th>
- <th width="10%" align="center"><?php echo L('touserid')?></th>
- <th width='15%' align="center"><?php echo L('send_time')?></th>
- <th width="15%" align="center"><?php echo L('operations_manage')?></th>
- </tr>
- </thead>
- <tbody>
- <?php
- if(is_array($infos)){
- foreach($infos as $info){
- ?>
- <tr>
- <td align="center" width="35"><input type="checkbox"
- name="messageid[]" value="<?php echo $info['messageid']?>"></td>
- <td><?php echo $info['subject']?></td>
- <td align="" widht="35%"><?php echo $info['content'];?></td>
- <td align="center" width="10%"><?php echo $info['send_to_id'];?></td>
- <td align="center" width="15%"><?php echo date("Y-m-d H:i:s",$info['message_time']);?></td>
- <td align="center" width="15%"> <a
- href='?m=message&c=message&a=delete&messageid=<?php echo $info['messageid']?>'
- onClick="return confirm('<?php echo L('confirm', array('message' => new_addslashes($info['subject'])))?>')"><?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 name="submit" type="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>
- <script type="text/javascript">
- function see_all(id, name) {
- window.top.art.dialog({id:'sell_all'}).close();
- window.top.art.dialog({title:'<?php echo L('details');//echo L('edit')?> '+name+' ',id:'edit',iframe:'?m=message&c=message&a=see_all&messageid='+id,width:'700',height:'450'}, function(){var d = window.top.art.dialog({id:'see_all'}).data.iframe;var form = d.document.getElementById('dosubmit');form.click();return false;}, function(){window.top.art.dialog({id:'see_all'}).close()});
- }
- function checkuid() {
- var ids='';
- $("input[name='messageid[]']: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();
- }
- }
- </script>
- </body>
- </html>
|