| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 | <?phpdefined('IN_ADMIN') or exit('No permission resources.');include $this->admin_tpl('header');?><?php if(ROUTE_A=='init') {?><form name="myform" action="?m=admin&c=menu&a=listorder" method="post"><div class="pad-lr-10"><div class="table-list">    <table width="100%" cellspacing="0">        <thead>            <tr>            <th width="80"><?php echo L('listorder');?></th>            <th width="100">id</th>            <th><?php echo L('menu_name');?></th>			<th><?php echo L('operations_manage');?></th>            </tr>        </thead>	<tbody>    <?php echo $categorys;?>	</tbody>    </table>      <div class="btn"><input type="submit" class="button" name="dosubmit" value="<?php echo L('listorder')?>" /></div>  </div></div></div></form></body></html><?php } elseif(ROUTE_A=='add') {?><script type="text/javascript"><!--	$(function(){		$.formValidator.initConfig({formid:"myform",autotip:true,onerror:function(msg,obj){window.top.art.dialog({content:msg,lock:true,width:'200',height:'50'}, function(){this.close();$(obj).focus();})}});		$("#language").formValidator({onshow:"<?php echo L("input").L('chinese_name')?>",onfocus:"<?php echo L("input").L('chinese_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('chinese_name')?>"});		$("#name").formValidator({onshow:"<?php echo L("input").L('menu_name')?>",onfocus:"<?php echo L("input").L('menu_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('menu_name')?>"});		$("#m").formValidator({onshow:"<?php echo L("input").L('module_name')?>",onfocus:"<?php echo L("input").L('module_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('module_name')?>"});		$("#c").formValidator({onshow:"<?php echo L("input").L('file_name')?>",onfocus:"<?php echo L("input").L('file_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('file_name')?>"});		$("#a").formValidator({tipid:'a_tip',onshow:"<?php echo L("input").L('action_name')?>",onfocus:"<?php echo L("input").L('action_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('action_name')?>"});	})//--></script><div class="common-form"><form name="myform" id="myform" action="?m=admin&c=menu&a=add" method="post"><table width="100%" class="table_form contentWrap">      <tr>        <th width="200"><?php echo L('menu_parentid')?>:</th>        <td><select name="info[parentid]" >        <option value="0"><?php echo L('no_parent_menu')?></option><?php echo $select_categorys;?></select></td>      </tr>      <tr>        <th > <?php echo L('chinese_name')?>:</th>        <td><input type="text" name="language" id="language" class="input-text" ></td>      </tr>      <tr>        <th><?php echo L('menu_name')?>:</th>        <td><input type="text" name="info[name]" id="name" class="input-text" ></td>      </tr>	<tr>        <th><?php echo L('module_name')?>:</th>        <td><input type="text" name="info[m]" id="m" class="input-text" ></td>      </tr>	<tr>        <th><?php echo L('file_name')?>:</th>        <td><input type="text" name="info[c]" id="c" class="input-text" ></td>      </tr>	<tr>        <th><?php echo L('action_name')?>:</th>        <td><input type="text" name="info[a]" id="a" class="input-text" > <span id="a_tip"></span><?php echo L('ajax_tip')?></td>      </tr>	<tr>        <th><?php echo L('att_data')?>:</th>        <td><input type="text" name="info[data]" class="input-text" ></td>      </tr>	<tr>        <th><?php echo L('menu_display')?>:</th>        <td><input type="radio" name="info[display]" value="1" checked> <?php echo L('yes')?><input type="radio" name="info[display]" value="0"> <?php echo L('no')?></td>      </tr>	  <tr>        <th><?php echo L('show_in_model')?>:</th>        <td><?php foreach($models as $_k => $_m) {?><input type="checkbox" name="info[<?php echo $_k?>]" value="1"> <?php echo $_m?><?php }?></td>      </tr></table><!--table_form_off--></div>    <div class="bk15"></div>	<div class="btn"><input type="submit" id="dosubmit" class="button" name="dosubmit" value="<?php echo L('submit')?>"/></div></div></form><?php } elseif(ROUTE_A=='edit') {?><script type="text/javascript"><!--	$(function(){		$.formValidator.initConfig({formid:"myform",autotip:true,onerror:function(msg,obj){window.top.art.dialog({content:msg,lock:true,width:'200',height:'50'}, function(){this.close();$(obj).focus();})}});		$("#language").formValidator({onshow:"<?php echo L("input").L('chinese_name')?>",onfocus:"<?php echo L("input").L('chinese_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('chinese_name')?>"});		$("#name").formValidator({onshow:"<?php echo L("input").L('menu_name')?>",onfocus:"<?php echo L("input").L('menu_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('menu_name')?>"});		$("#m").formValidator({onshow:"<?php echo L("input").L('module_name')?>",onfocus:"<?php echo L("input").L('module_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('module_name')?>"});		$("#c").formValidator({onshow:"<?php echo L("input").L('file_name')?>",onfocus:"<?php echo L("input").L('file_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('file_name')?>"});		$("#a").formValidator({tipid:'a_tip',onshow:"<?php echo L("input").L('action_name')?>",onfocus:"<?php echo L("input").L('action_name')?>",oncorrect:"<?php echo L('input_right');?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('action_name')?>"});	})//--></script><div class="common-form"><form name="myform" id="myform" action="?m=admin&c=menu&a=edit" method="post"><table width="100%" class="table_form contentWrap">      <tr>        <th width="200"><?php echo L('menu_parentid')?>:</th>        <td><select name="info[parentid]" style="width:200px;"> <option value="0"><?php echo L('no_parent_menu')?></option><?php echo $select_categorys;?></select></td>      </tr>      <tr>        <th> <?php echo L('for_chinese_lan')?>:</th>        <td><input type="text" name="language" id="language" class="input-text" value="<?php echo L($name,'','',1)?>"></td>      </tr>      <tr>        <th><?php echo L('menu_name')?>:</th>        <td><input type="text" name="info[name]" id="name" class="input-text" value="<?php echo $name?>"></td>      </tr>	<tr>        <th><?php echo L('module_name')?>:</th>        <td><input type="text" name="info[m]" id="m" class="input-text" value="<?php echo $m?>"></td>      </tr>	<tr>        <th><?php echo L('file_name')?>:</th>        <td><input type="text" name="info[c]" id="c" class="input-text" value="<?php echo $c?>"></td>      </tr>	<tr>        <th><?php echo L('action_name')?>:</th>        <td><input type="text" name="info[a]" id="a" class="input-text" value="<?php echo $a?>">  <span id="a_tip"></span><?php echo L('ajax_tip')?></td>      </tr>	<tr>        <th><?php echo L('att_data')?>:</th>        <td><input type="text" name="info[data]" class="input-text" value="<?php echo $data?>"></td>      </tr>	<tr>        <th><?php echo L('menu_display')?>:</th>        <td><input type="radio" name="info[display]" value="1" <?php if($display) echo 'checked';?>> <?php echo L('yes')?><input type="radio" name="info[display]" value="0" <?php if(!$display) echo 'checked';?>> <?php echo L('no')?></td>      </tr>	<tr>        <th><?php echo L('show_in_model')?>:</th>        <td><?php foreach($models as $_k => $_m) {?><input type="checkbox" name="info[<?php echo $_k?>]" value="1"<?php if (${$_k}) {?> checked<?php }?>> <?php echo $_m?><?php }?></td>      </tr></table><!--table_form_off--></div>    <div class="bk15"></div>	<input name="id" type="hidden" value="<?php echo $id?>">    <div class="btn"><input type="submit" id="dosubmit" class="button" name="dosubmit" value="<?php echo L('submit')?>"/></div></div></form><?php }?></body></html>
 |