123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- include $this->admin_tpl('header');?>
- <form name="myform" action="?m=admin&c=category&a=listorder" method="post">
- <div class="pad_10">
- <div class="explain-col">
- <?php echo L('category_cache_tips');?>,<a href="?m=admin&c=category&a=public_cache&menuid=43&module=admin"><?php echo L('update_cache');?></a>
- </div>
- <div class="bk10"></div>
- <div class="table-list">
- <table width="100%" cellspacing="0" >
- <thead>
- <tr>
- <th width="38"><?php echo L('listorder');?></th>
- <th width="30">catid</th>
- <th ><?php echo L('catname');?></th>
- <th align='left' width='50'><?php echo L('category_type');?></th>
- <th align='left' width="50"><?php echo L('modelname');?></th>
- <th align='center' width="40"><?php echo L('items');?></th>
- <th align='center' width="30"><?php echo L('vistor');?></th>
- <th align='center' width="80"><?php echo L('domain_help');?></th>
- <th ><?php echo L('operations_manage');?></th>
- </tr>
- </thead>
- <tbody>
- <?php echo $categorys;?>
- </tbody>
- </table>
- <div class="btn">
- <input type="hidden" name="pc_hash" value="<?php echo $_SESSION['pc_hash'];?>" />
- <input type="submit" class="button" name="dosubmit" value="<?php echo L('listorder')?>" /></div> </div>
- </div>
- </div>
- </form>
- <script language="JavaScript">
- <!--
- window.top.$('#display_center_id').css('display','none');
- //-->
- </script>
- </body>
- </html>
|