Server : nginx/1.22.1 System : Linux iZwz9daxib3w3i063fw434Z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/www.jkmold.com/phpcms/modules/vote/templates/ |
<?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>