123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- include $this->admin_tpl('header','admin');?>
- <div class="pad-10">
- <div class="explain-col">
- <?php echo L('html_notice');?>
- </div>
- <div class="bk10"></div>
- <div class="table-list">
- <table width="100%" cellspacing="0">
- <form action="?m=content&c=create_html&a=show" method="post" name="myform">
- <input type="hidden" name="dosubmit" value="1">
- <input type="hidden" name="type" value="lastinput">
- <thead>
- <tr>
- <th align="center" width="150"><?php echo L('according_model');?></th>
- <th align="center" width="386"><?php echo L('select_category_area');?></th>
- <th align="center"><?php echo L('select_operate_content');?></th>
- </tr>
- </thead>
- <tbody height="200" class="nHover td-line">
- <tr>
- <td align="center" rowspan="6">
- <?php
- $models = getcache('model','commons');
- $model_datas = array();
- foreach($models as $_k=>$_v) {
- if($_v['siteid']!=$this->siteid) continue;
- $model_datas[$_v['modelid']] = $_v['name'];
- }
- echo form::select($model_datas,$modelid,'name="modelid" size="2" style="height:200px;width:130px;" onclick="change_model(this.value)"',L('no_limit_model'));
- ?>
- </td>
- </tr>
- <tr>
- <td align="center" rowspan="6">
- <select name='catids[]' id='catids' multiple="multiple" style="height:200px;" title="<?php echo L('push_ctrl_to_select');?>">
- <option value='0' selected><?php echo L('no_limit_category');?></option>
- <?php echo $string;?>
- </select></td>
- <td><font color="red"><?php echo L('every_time');?> <input type="text" name="pagesize" value="10" size="4"> <?php echo L('information_items');?></font></td>
- </tr>
- <tr>
- <td><?php echo L('update_all');?> <input type="button" name="dosubmit1" value=" <?php echo L('submit_start_update');?> " class="button" onclick="myform.type.value='all';myform.submit();"></td>
- </tr>
- <?php if($modelid) { ?>
- <tr>
- <td><?php echo L('last_information');?> <input type="text" name="number" value="100" size="5"> <?php echo L('information_items');?><input type="button" class="button" name="dosubmit2" value=" <?php echo L('submit_start_update');?> " onclick="myform.type.value='lastinput';myform.submit();"></td>
- </tr>
- <tr>
- <td><?php echo L('update_time_from');?> <?php echo form::date('fromdate');?> <?php echo L('to');?> <?php echo form::date('todate');?><?php echo L('in_information');?> <input type="button" name="dosubmit3" value=" <?php echo L('submit_start_update');?> " class="button" onclick="myform.type.value='date';myform.submit();"></td>
- </tr>
- <tr>
- <td><?php echo L('update_id_from');?> <input type="text" name="fromid" value="0" size="8"> <?php echo L('to');?> <input type="text" name="toid" size="8"> <?php echo L('in_information');?> <input type="button" class="button" name="dosubmit4" value=" <?php echo L('submit_start_update');?> " onclick="myform.type.value='id';myform.submit();"></td>
- </tr>
- <?php } ?>
- <tr>
- <td></td>
- </tr>
- </tbody>
- </form>
- </table>
- </div>
- </div>
- <script language="JavaScript">
- <!--
- window.top.$('#display_center_id').css('display','none');
- function change_model(modelid) {
- window.location.href='?m=content&c=create_html&a=show&modelid='+modelid+'&pc_hash='+pc_hash;
- }
- //-->
- </script>
|