| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- <?php
 
- defined('IN_ADMIN') or exit('No permission resources.');
 
- include $this->admin_tpl('header');?>
 
- <script type="text/javascript">
 
-   $(document).ready(function() {
 
- 	$.formValidator.initConfig({autotip:true,formid:"myform",onerror:function(msg){}});
 
- 	$("#name").formValidator({onshow:"<?php echo L('input').L('linkage_name')?>",onfocus:"<?php echo L('linkage_name').L('not_empty')?>"}).inputValidator({min:1,max:999,onerror:"<?php echo L('linkage_name').L('not_empty')?>"});
 
-   })
 
- </script>
 
- <div class="pad_10">
 
- <div class="common-form">
 
- <form name="myform" action="?m=admin&c=linkage&a=edit" method="post" id="myform">
 
- <table width="100%" class="table_form contentWrap">
 
- <?php
 
- if(isset($_GET['parentid'])) { ?>
 
- <tr>
 
-   <td><?php echo L('linkage_parent_menu')?></td>
 
-   <td>
 
- <?php echo form::select_linkage($info['keyid'], 0, 'info[parentid]', 'parentid', L('cat_empty'), $_GET['parentid'])?>
 
-   </td>
 
-   </tr>
 
-   <?php } ?>
 
- <tr>
 
- <td><?php echo L('linkage_name')?></td>
 
- <td>
 
- <input type="text" name="info[name]" value="<?php echo $name?>" class="input-text" id="name" size="30"></input>
 
- </td>
 
- </tr>
 
- <tr>
 
- <td><?php echo L('linkage_desc')?></td>
 
- <td>
 
- <textarea name="info[description]" rows="2" cols="20" id="description" class="inputtext" style="height:45px;width:300px;"><?php echo $description?></textarea>
 
- </td>
 
- </tr>
 
- <?php
 
- if(isset($_GET['parentid'])) { ?>
 
- <input type="hidden" name="info[siteid]" value="<?php echo $this->_get_belong_siteid($keyid)?>" class="input-text" id="name" size="30"></input>
 
- <input type="hidden" name="linkageid" value="<?php echo $linkageid?>">
 
-  <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="dialog" id="dosubmit">
 
- <?php } else { ?>
 
- <tr>
 
- <td><?php echo L('linkage_menu_style')?></td>
 
- <td>
 
- <input name="info[style]" value="0" type="radio" <?php if($style==0) {?>checked<?php }?>> <?php echo L('linkage_option_style')?>  
 
- <input name="info[style]" value="1" type="radio" <?php if($style==1) {?>checked<?php }?>> <?php echo L('linkage_pop_style')?>  
 
- <input name="info[style]" value="2" type="radio" <?php if($style==2) {?>checked<?php }?>> <?php echo L('linkage_select_style')?>,<?php echo L('linkage_select_show')?><input type="text" name="info[level]" value="<?php echo $setting['level']?>" class="input-text" id="level" size="5"></input><?php echo L('linkage_select_level')?>
 
- </td>
 
- </tr>
 
- <tr>
 
- <td><?php echo L('site_select')?></td>
 
- <td>
 
- <?php echo form::select($sitelist,$siteid,'name="info[siteid]"',L('all_site'))?><input type="hidden" name="linkageid" value="<?php echo $linkageid?>">
 
- 	<input type="hidden" name="info[keyid]" value="<?php echo $keyid?>">
 
-     <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="dialog" id="dosubmit">
 
- </td>
 
- </tr>
 
-   <?php } ?>
 
- </table>
 
-     
 
- </form>
 
- </div>
 
- </div>
 
- </body>
 
- </html>
 
 
  |