| Server IP : 119.195.102.159 / Your IP : 216.73.217.134 Web Server : nginx/1.18.0 System : Linux picell 5.15.0-181-generic #191-Ubuntu SMP Fri May 22 19:09:02 UTC 2026 x86_64 User : altablue ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home6/bios/default2/ |
Upload File : |
/**
* @author https://www.cosmosfarm.com
*/
function kboard_editor_execute(form){
jQuery.fn.exists = function(){
return this.length>0;
};
/*
* 잠시만 기다려주세요.
*/
if(jQuery(form).data('submitted')){
alert(kboard_localize_strings.please_wait);
return false;
}
/*
* 폼 유효성 검사
*/
var validation = '';
kboard_fields_validation(form, function(fields){
if(fields){
validation = fields;
jQuery(fields).focus();
}
});
if(!validation){
if(parseInt(jQuery('input[name=user_id]', form).val()) > 0){
// 로그인 사용자의 경우 비밀글 체크시에만 비밀번호를 필수로 입력합니다.
if(jQuery('input[name=secret]', form).prop('checked') && !jQuery('input[name=password]', form).val()){
alert(kboard_localize_strings.please_enter_the_password);
jQuery('input[name=password]', form).focus();
return false;
}
}
else{
// 비로그인 사용자는 반드시 비밀번호를 입력해야 합니다.
if(!jQuery('input[name=password]', form).val()){
alert(kboard_localize_strings.please_enter_the_password);
jQuery('input[name=password]', form).focus();
return false;
}
}
if(jQuery('input[name=captcha]', form).exists() && !jQuery('input[name=captcha]', form).val()){
// 캡차 필드가 있을 경우 필수로 입력합니다.
alert(kboard_localize_strings.please_enter_the_CAPTCHA);
jQuery('input[name=captcha]', form).focus();
return false;
}
jQuery(form).data('validation', 'ok');
}
if(jQuery(form).data('validation') == 'ok'){
jQuery(form).data('submitted', 'submitted');
jQuery('[type=submit]', form).text(kboard_localize_strings.please_wait);
jQuery('[type=submit]', form).val(kboard_localize_strings.please_wait);
return true;
}
return false;
}
function kboard_toggle_password_field(checkbox){
var form = jQuery(checkbox).parents('.kboard-form');
if(jQuery(checkbox).prop('checked')){
jQuery('.secret-password-row', form).show();
setTimeout(function(){
jQuery('.secret-password-row input[name=password]', form).focus();
}, 0);
}
else{
jQuery('.secret-password-row', form).hide();
jQuery('.secret-password-row input[name=password]', form).val('');
}
}
function kboard_radio_reset(obj){
jQuery(obj).parents('.kboard-attr-row').find('input[type=radio]').each(function(){
jQuery(this).prop('checked',false);
});
}
jQuery(window).bind('beforeunload',function(e){
e = e || window.event;
if(jQuery('.kboard-form').data('submitted') != 'submitted'){
var dialogText = kboard_localize_strings.changes_you_made_may_not_be_saved;
e.returnValue = dialogText;
return dialogText;
}
});