123456789101112131415161718192021222324252627282930313233 |
- <?php defined('IN_ADMIN') or exit('No permission resources.');?>
- <?php include $this->admin_tpl('header', 'admin');?>
- <script type="text/javascript">
- $(document).ready(function() {
- $.formValidator.initConfig({formid:"myform",autotip:true,onerror:function(msg,obj){window.top.art.dialog({content:msg,lock:true,width:'200',height:'50'})}});
- $("#name").formValidator({onshow:"<?php echo L('input').L('nodename')?>",onfocus:"<?php echo L('input').L('nodename')?>"}).inputValidator({min:1,onerror:"<?php echo L('input').L('nodename')?>"}).ajaxValidator({type : "get",url : "",data :"m=collection&c=node&a=public_name",datatype : "html",async:'false',success : function(data){ if( data == "1" ){return true;}else{return false;}},buttons: $("#dosubmit"),onerror : "<?php echo L('nodename').L('exists')?>",onwait : "<?php echo L('connecting')?>"});
- });
- </script>
- <div class="pad-10">
- <form name="myform" action="?m=collection&c=node&a=copy&nodeid=<?php if(isset($nodeid)) echo $nodeid?>" method="post" id="myform">
- <div class="common-form">
- <table width="100%" class="table_form">
- <tr>
- <td width="120"><?php echo L('had_collected_from_the_roll')?>:</td>
- <td>
- <?php if(isset($data['name'])) echo $data['name']?>
- </td>
- </tr>
- <tr>
- <td width="120"><?php echo L('the_new_gathering')?>:</td>
- <td>
- <input type="text" name="name" id="name" class="input-text" value="" />
- </td>
- </tr>
- </table>
- <input name="dosubmit" type="submit" id="dosubmit" value="<?php echo L('submit')?>" class="dialog">
- </div>
- </div>
- </form>
- </body>
- </html>
|