| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 | 
							- <?php
 
- defined('IN_ADMIN') or exit('No permission resources.');
 
- include $this->admin_tpl('header','admin');
 
- ?>
 
- <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();})}});
 
- 	$("#subject_title").formValidator({onshow:"<?php echo L("input").L('vote_title')?>",onfocus:"<?php echo L("input").L('vote_title')?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('vote_title')?>"}).regexValidator({regexp:"notempty",datatype:"enum",param:'i',onerror:"<?php echo L('input_not_space')?>"}).ajaxValidator({type : "get",url : "",data :"m=vote&c=vote&a=public_name",datatype : "html",async:'false',success : function(data){	if( data == "1" ){return true;}else{return false;}},buttons: $("#dosubmit"),onerror : "<?php echo L('vote_title').L('exists')?>",onwait : "<?php echo L('connecting')?>"});
 
- 	$("#option1").formValidator({onshow:"<?php echo L("input").L('vote_option')?>",onfocus:"<?php echo L("input").L('vote_option')?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('vote_option')?>"}).regexValidator({regexp:"notempty",datatype:"enum",param:'i',onerror:"<?php echo L('input_not_space')?>"});
 
- 	$("#option2").formValidator({onshow:"<?php echo L("input").L('vote_option')?>",onfocus:"<?php echo L("input").L('vote_option')?>"}).inputValidator({min:1,onerror:"<?php echo L("input").L('vote_option')?>"}).regexValidator({regexp:"notempty",datatype:"enum",param:'i',onerror:"<?php echo L('input_not_space')?>"});
 
- 	$("#fromdate").formValidator({onshow:"<?php echo L('select').L('fromdate')?>",onfocus:"<?php echo L('select').L('fromdate')?>",oncorrect:"<?php echo L('time_is_ok');
 
- 	?>"}).inputValidator();
 
- 	$("#todate").formValidator({onshow:"<?php echo L('select').L('todate')?>",onfocus:"<?php echo L('select').L('todate')?>",oncorrect:"<?php echo L('time_is_ok');?>"}).inputValidator();
 
- 	$('#style').formValidator({onshow:"<?php echo L('select_style')?>",onfocus:"<?php echo L('select_style')?>",oncorrect:"<?php echo L('right_all')?>"}).inputValidator({min:1,onerror:"<?php echo L('select_style')?>"});	
 
- 	});
 
- //-->
 
- </script>
 
- <div class="pad_10">
 
- <form action="?m=vote&c=vote&a=add" method="post" name="myform" id="myform">
 
- <table cellpadding="2" cellspacing="1" class="table_form" width="100%">
 
- 	<tr>
 
- 		<th width="100"><?php echo L('vote_title')?> :</th>
 
- 		<td><input type="text" name="subject[subject]" id="subject_title"
 
- 			size="30" class="input-text"></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th width="20%"><?php echo L('select_type')?> :</th>
 
- 		<td><select name="subject[ischeckbox]" id=""
 
- 			onchange="AdsType(this.value)">
 
- 			<option value="0"><?php echo L('radio');?></option>
 
- 			<option value="1"><?php echo L('checkbox');?></option>
 
- 		</select></td>
 
- 	</tr>
 
- 	<tr id="SizeFormat" style="display: none;">
 
- 		<th></th>
 
- 		<td><label><?php echo L('minval')?></label>  <input name="subject[minval]"
 
- 			class="input-text" type="text" size="5"> <?php echo L('item')?>      <label><?php echo L('maxval')?></label>  <input
 
- 			name="subject[maxval]" type="text" class="input-text" size="5"> <?php echo L('item')?></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th width="20%"><?php echo L('vote_option')?> :</th>
 
- 		<td>
 
- 		<input type="button" id="addItem" value="<?php echo L('add_option')?>" class="button" onclick="add_option()">
 
- 		<div id="option_list_1">
 
- 		<div><br> <input type="text"
 
- 			name="option[]" id="option1" size="40" require="true"
 
- 			id="opt1"/></div>
 
- 		<div><br>
 
- 		<input type="text"
 
- 			name="option[]" id="option2"  size="40"
 
- 			id="opt2" /></div>
 
- 		</div>
 
- 		
 
- 		<div id="new_option"></div>
 
- 		</td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('fromdate')?> :</th>
 
- 		<td><?php echo form::date('subject[fromdate]', '', '')?></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('todate')?> :</th>
 
- 		<td><?php echo form::date('subject[todate]', '', '')?></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('vote_description')?></th>
 
- 		<td><textarea name="subject[description]" id="description" cols="60"
 
- 			rows="6"></textarea></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('allowview')?>:</th>
 
- 		<td><input name="subject[allowview]" type="radio" value="1" checked> <?php echo L('allow')?>  <input
 
- 			name="subject[allowview]" type="radio" value="0"> <?php echo L('not_allow')?></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('allowguest')?>:</th>
 
- 		<td><input name="subject[allowguest]" type="radio" value="1" <?php if($allowguest == 1) {?>checked<?php }?>> <?php echo L('yes')?>  <input
 
- 			name="subject[allowguest]" type="radio" value="0" <?php if($allowguest == 0) {?>checked<?php }?>> <?php echo L('no')?></td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('credit')?>:</th>
 
- 		<td><input name="subject[credit]" type="text" value="<?php echo $credit;?>" size='5'></td>
 
- 	</tr>
 
- 	
 
- 	<tr>
 
- 		<th><?php echo L('interval')?>: </th>
 
- 		<td> <input type="text" name="subject[interval]" value="<?php echo $interval;?>" size='5' /> <?php echo L('more_ip')?>,<font color=red>0</font> <?php echo L('one_ip')?></td>
 
- 	</tr>
 
- 	
 
- 	<tr>
 
- 		<th><?php echo L('vote_style')?>:</th>
 
- 		<td>
 
- 		<?php echo form::select($template_list, $default_style, 'name="vote_subject[style]" id="style" onchange="load_file_list(this.value)"', L('please_select'))?> 
 
- 		</td>
 
- 	</tr>
 
- 	
 
- 	<tr>
 
- 		<th><?php echo L('template')?>:</th>
 
- 		<td id="show_template">
 
- 		<?php echo form::select_template($default_style, 'vote', $vote_tp_template, 'name="vote_subject[vote_tp_template]"', 'vote_tp');?>
 
- 		</td>
 
- 	</tr>
 
- 	<tr>
 
- 		<th><?php echo L('enabled')?>:</th>
 
- 		<td><input name="subject[enabled]" type="radio" value="1" <?php if($enabled == 1) {?>checked<?php }?>> <?php echo L('yes')?>  <input
 
- 			name="subject[enabled]" type="radio" value="0" <?php if($enabled == 0) {?>checked<?php }?>> <?php echo L('no')?></td>
 
- 	</tr>
 
- <tr>
 
- 		<th></th>
 
- 		<td>
 
- <input type="hidden"name="from_api" value="<?php echo $_GET['from_api'];?>">
 
- <input type="submit" name="dosubmit" id="dosubmit" class="dialog"
 
- 		value=" <?php echo L('submit')?> "></td>
 
- 	</tr>
 
- </table>
 
- </form>
 
- </div>
 
- </body>
 
- </html>
 
- <script language="javascript" type="text/javascript">
 
- function AdsType(adstype) {
 
- 	$('#SizeFormat').css('display', 'none');
 
- 	if(adstype=='0') {
 
- 		
 
- 	} else if(adstype=='1') {
 
- 		$('#SizeFormat').css('display', '');
 
- 	}
 
- }
 
- $('#AlignBox').click( function (){
 
- 	if($('#AlignBox').attr('checked')) {
 
- 		$('#PaddingLeft').attr('disabled', true);
 
- 		$('#PaddingTop').attr('disabled', true);
 
- 	} else {
 
- 		$('#PaddingLeft').attr('disabled', false);
 
- 		$('#PaddingTop').attr('disabled', false);
 
- 	}
 
- }); 
 
- </script>
 
- <script language="javascript">
 
- var i = 1;
 
- function add_option() {
 
- 	//var i = 1;
 
- 	var htmloptions = '';
 
- 	htmloptions += '<div id='+i+'><span><br><input type="text" name="option[]" size="40" msg="<?php echo L('must_input')?>" value="" class="input-text"/><input type="button" value="<?php echo L('del')?>"  onclick="del('+i+')" class="button"/><br></span></div>';
 
- 	$(htmloptions).appendTo('#new_option'); 
 
- 	var htmloptions = '';
 
- 	i = i+1;
 
- }
 
- function del(o){
 
-  $("div [id=\'"+o+"\']").remove();	
 
- }
 
- function load_file_list(id) {
 
- 	$.getJSON('?m=admin&c=category&a=public_tpl_file_list&style='+id+'&module=vote&templates=vote_tp&name=vote_subject&pc_hash='+pc_hash, function(data){$('#show_template').html(data.vote_tp_template);});
 
- }
 
- </script>
 
 
  |