12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- include $this->admin_tpl('header');?>
- <script type="text/javascript">
- <!--
- $(function(){
- $.formValidator.initConfig({autotip:true,formid:"myform",onerror:function(msg){}});
- $("#sitename").formValidator({onshow:"<?php echo L('input').L('mirrors_name')?>",onfocus:"<?php echo L('mirrors_name').L('downserver_not_empty')?>"}).inputValidator({min:1,max:999,onerror:"<?php echo L('downserver_name').L('downserver_not_empty')?>"});
- $("#siteurl").formValidator({onshow:"<?php echo L('mirror_address')?>",onfocus:"<?php echo L('mirror_address')?>"}).inputValidator({onerror:"<?php echo L('downserver_error')?>"}).regexValidator({regexp:"([a-zA-Z]+):\/\/(.+)[^\/]$",onerror:"<?php echo L('downserver_error')?>"});
- })
- //-->
- </script>
- <div class="pad_10">
- <div class="common-form">
- <form name="myform" action="?m=admin&c=downservers&a=edit" method="post" id="myform">
- <input type="hidden" name="id" value="<?php echo $id?>"></input>
- <table width="100%" class="table_form">
- <tr>
- <td width="80"><?php echo L('mirrors_name')?></td>
- <td><input type="text" name="info[sitename]" class="input-text" value="<?php echo $sitename?>" id="sitename"></input></td>
- </tr>
- <tr>
- <td width="80"><?php echo L('mirror_address')?></td>
- <td><input type="text" name="info[siteurl]" class="input-text" value="<?php echo $siteurl?>" id="siteurl" size="40"></input></td>
- </tr>
- <tr>
- <td><?php echo L('site_select')?></td>
- <td><?php echo form::select($sitelist,$siteid,'name="info[siteid]"',$default)?></td>
- </tr>
- </table>
- <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="dialog" id="dosubmit">
- </form>
- </div>
- </div>
- </body>
- </html>
|