| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 | <?php defined('IN_ADMIN') or exit('No permission resources.');include $this->admin_tpl('header', 'admin');?><div class="pad-10"><form method="post" action="?m=formguide&c=formguide&a=add" name="myform" id="myform"><table class="table_form" width="100%" cellspacing="0"><tbody>	<tr>		<th width="150"><strong><?php echo L('name')?>:</strong></th>		<td><input name="info[name]" id="name" class="input-text" type="text" size="30" ></td>	</tr>	<tr>		<th><strong><?php echo L('tablename')?>:</strong></th>		<td><input name="info[tablename]" id="tablename" class="input-text" type="text" size="25" ></td>	</tr>	<tr>		<th><strong><?php echo L('introduction')?>:</strong></th>		<td><textarea name="info[description]" id="description" rows="6" cols="50"></textarea></td>	</tr>	<tr>		<th><strong><?php echo L('time_limit')?>:</strong></th>		<td><input type="radio" name="setting[enabletime]" value="1"> <?php echo L('enable')?> <input type="radio" name="setting[enabletime]" value="0" checked> <?php echo L('unenable')?></td>	</tr>	<tr id="time_start" style="display:none;">  		<th><strong><?php echo L('start_time')?>:</strong></th>        <td><?php echo form::date('setting[starttime]', date('Y-m-d', SYS_TIME))?></td>	</tr>	<tr id="time_end" style="display:none;">		<th><strong><?php echo L('end_time')?>:</strong></th>		<td><?php echo form::date('setting[endtime]')?></td>	</tr>	<tr>		<th><strong><?php echo L('allowed_send_mail')?>:</strong></th>		<td><input name="setting[sendmail]" type="radio" value="1" > <?php echo L('yes')?>  <input name="setting[sendmail]" type="radio" value="0" checked> <?php echo L('no')?></td>	</tr>	<tr id="mailaddress" style="display:none;">		<th><strong><?php echo L('e-mail_address')?>:</strong></th>		<td><input type="text" name="setting[mails]" id="mails" class="input-text" size="50"> <?php echo L('multiple_with_commas')?></td>	</tr>	<tr>		<th><strong><?php echo L('allows_more_ip')?>:</strong></th>		<td><input type='radio' name='setting[allowmultisubmit]' value='1' <?php if($this->M['allowmultisubmit'] == 1) {?>checked<?php }?>> <?php echo L('yes')?>    	  <input type='radio' name='setting[allowmultisubmit]' value='0' <?php if($this->M['allowmultisubmit'] == 0) {?>checked<?php }?>> <?php echo L('no')?></td>	</tr>	<tr>		<th><strong><?php echo L('allowunreg')?>:</strong></th>		<td><input type='radio' name='setting[allowunreg]' value='1' <?php if($this->M['allowunreg'] == 1) {?>checked<?php }?>> <?php echo L('yes')?>    	  <input type='radio' name='setting[allowunreg]' value='0' <?php if($this->M['allowunreg'] == 0) {?>checked<?php }?>> <?php echo L('no')?></td>	</tr>	<tr>		<th><strong><?php echo L('optional_style')?>:</strong></th>		<td>		<?php echo form::select($template_list, $info['default_style'], 'name="info[default_style]" id="style" onchange="load_file_list(this.value)"', L('please_select'))?> 		</td>	</tr>	<tr>		<th><strong><?php echo L('template_selection')?>:</strong></th>		<td id="show_template"><script type="text/javascript">$.getJSON('?m=admin&c=category&a=public_tpl_file_list&style=<?php echo $info['default_style']?>&module=formguide&templates=show&name=info&pc_hash='+pc_hash, function(data){$('#show_template').html(data.show_template);});</script></td>	</tr>	<tr>		<th><strong>js调用使用的模板:</strong></th>		<td id="show_js_template"><script type="text/javascript">$.getJSON('?m=admin&c=category&a=public_tpl_file_list&style=<?php echo $info['default_style']?>&module=formguide&templates=show_js&name=info&pc_hash='+pc_hash, function(data){$('#show_js_template').html(data.show_js_template);});</script></td>	</tr>	</tbody></table><input type="submit" name="dosubmit" id="dosubmit" value=" <?php echo L('ok')?> " class="dialog"> <input type="reset" class="dialog" value=" <?php echo L('clear')?> "></form></div></body></html><script type="text/javascript">function load_file_list(id) {	if (id=='') return false;	$.getJSON('?m=admin&c=category&a=public_tpl_file_list&style='+id+'&module=formguide&templates=show|show_js&name=info&pc_hash='+pc_hash, function(data){$('#show_template').html(data.show_template);$('#show_js_template').html(data.show_js_template);});}$(document).ready(function(){	$.formValidator.initConfig({formid:"myform",autotip:true,onerror:function(msg,obj){window.top.art.dialog({content:msg,lock:true,width:'220',height:'70'}, function(){this.close();$(obj).focus();})}});	$('#name').formValidator({onshow:"<?php echo L('input_form_title')?>",onfocus:"<?php echo L('title_min_3_chars')?>",oncorrect:"<?php echo L('right')?>"}).inputValidator({min:1,onerror:"<?php echo L('title_cannot_empty')?>"});	$('#tablename').formValidator({onshow:"<?php echo L('please_input_tallename')?>", onfocus:"<?php echo L('standard')?>", oncorrect:"<?php echo L('right')?>"}).regexValidator({regexp:"^[a-zA-Z]{1}([a-zA-Z0-9]|[_]){0,19}$",onerror:"<?php echo L('tablename_was_wrong');?>"}).inputValidator({min:1,onerror:"<?php echo L('tablename_no_empty')?>"}).ajaxValidator({	    type : "get",		url : "",		data : "m=formguide&c=formguide&a=public_checktable",		datatype : "html",		cached:false,		getdata:{issystem:'issystem'},		async:'false',		success : function(data){	            if( data == "1" ){                return true;			} else {                return false;			}		},		buttons: $("#dosubmit"),		onerror : "<?php echo L('tablename_existed')?>",		onwait : "<?php echo L('connecting_please_wait')?>"	});	$('#starttime').formValidator({onshow:"<?php echo L('select_stardate')?>",onfocus:"<?php echo L('select_stardate')?>",oncorrect:"<?php echo L('right_all')?>"});	$('#endtime').formValidator({onshow:"<?php echo L('select_downdate')?>",onfocus:"<?php echo L('select_downdate')?>",oncorrect:"<?php echo L('right_all')?>"});	$('#style').formValidator({onshow:"<?php echo L('select_style')?>",onfocus:"<?php echo L('select_style')?>",oncorrect:"<?php echo L('right')?>"}).inputValidator({min:1,onerror:"<?php echo L('select_style')?>"});});$("input:radio[name='setting[enabletime]']").click(function (){	if($("input:radio[name='setting[enabletime]'][checked]").val()==0) {		$("#time_start").hide();		$("#time_end").hide();	} else if($("input:radio[name='setting[enabletime]'][checked]").val()==1) {		$("#time_start").show();		$("#time_end").show();	}});$("input:radio[name='setting[sendmail]']").click(function (){	if($("input:radio[name='setting[sendmail]'][checked]").val()==0) {		$("#mailaddress").hide();	} else if($("input:radio[name='setting[sendmail]'][checked]").val()==1) {		$("#mailaddress").show();	}});</script>
 |