| Server IP : 170.10.161.225 / Your IP : 216.73.216.78 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /home/www/calvetrealty.com/wp-content/plugins/divi-pixel/dist/vendor/js/ |
Upload File : |
(function($){
$.fn.hurkanSwitch = function(opt){
/*
@Author : Hürkan ARAS
@Email : hurkanaras@gmail.com
*/
if(typeof opt === 'undefined') opt = {};
var _hurkanSwitch_conf = $.extend({
'on':function(r){},
'off':function(r){},
'onConfirm':function(r){ return true;},
'offConfirm':function(r){ return true;},
'selected':function(r){},
'onTitle':'',
'responsive':false,
'offTitle':'',
'animate':true,
'offColor':'',
'onColor':'success',
'className':'',
'width':80
},opt);
if(opt === 'destroy'){
this.each(function(){
if($(this).next().hasClass('hurkanSwitch-switch-plugin-box') && $(this).hasClass('hurkanSwitch-switch-plugin')){
$(this).next().remove();
$(this).css({'display':'inline-block'});
$(this).find('.hurkanSwitch-switch-input').removeClass('hurkanSwitch-switch-input');
$(this).removeClass('hurkanSwitch-switch-plugin');
}
});
return false;
}
$.fn._radio_button_on = function(){
var __index = $(this).index('.hurkanSwitch-switch-plugin');
var $thisElem = $(this);
$thisElem.css({'display':'none'});
if(typeof _hurkanSwitch_conf.checked !== 'undefined'){
if( _hurkanSwitch_conf.checked.toString().substr(0,1) === '.'){
$thisElem.find('input'+_hurkanSwitch_conf.checked+'').trigger("click");
}else{
$thisElem.find('input[value="'+_hurkanSwitch_conf.checked+'"]').trigger("click");
}
}
if($thisElem.hasClass('hurkanSwitch-switch-plugin')){
$(this).next().remove();
}
var obj = [];
var $inputElem = $thisElem.find('input').eq(0);
$thisElem.find('input').data({'_switch_opt':_hurkanSwitch_conf});
var bootstrapContent = '<div class="hurkanSwitch '+(_hurkanSwitch_conf.responsive === true ? ' switch-responsive ' : '' )+' hurkanSwitch-switch-plugin-box ';
if(_hurkanSwitch_conf.className !== ''){
bootstrapContent+=_hurkanSwitch_conf.className;
}
bootstrapContent+='">';
bootstrapContent+='<div class="hurkanSwitch-switch-box '+(_hurkanSwitch_conf.animate === true ? ' switch-animated-on ' : '')+'">';
if($inputElem.attr("type") === 'radio'){
var $item = $thisElem.find('input[type="radio"]');
if($item.length === 2){
$item.each(function(key,row){
$(row).addClass('hurkanSwitch-switch-input');
var label = $(row).attr("data-title");
if(typeof label === 'undefined'){
if($(row).val() === '1' || $(row).attr("data-status") === '1' || $(row).attr("data-on") ){
label= _hurkanSwitch_conf.onTitle;
}else{
label= _hurkanSwitch_conf.offTitle;
}
}
bootstrapContent+='<a class=" hurkanSwitch-switch-item';
if($(row).is(':checked')){
bootstrapContent+=' active ';
}
if(!$item.is(':checked')){
if($(row).val() === '0'){
bootstrapContent+=' active ';
}
}
if($(row).attr("data-on") || $(row).attr("data-status") === 'on' || $(row).attr("data-status") === '1'){
bootstrapContent+=' hurkanSwitch-switch-item-status-on ';
if($(row).attr("data-on-color")){
bootstrapContent+=' hurkanSwitch-switch-item-color-'+$inputElem.attr("data-on-color");
}else{
bootstrapContent+=' hurkanSwitch-switch-item-color-'+_hurkanSwitch_conf['onColor'];
}
}else{
if($(row).attr("data-off-color")){
bootstrapContent+=' hurkanSwitch-switch-item-color-'+$(row).attr("data-off-color");
}else{
bootstrapContent+=' hurkanSwitch-switch-item-color-'+_hurkanSwitch_conf['offColor'];
}
bootstrapContent+=' hurkanSwitch-switch-item-status-off ';
}
bootstrapContent+='"';
if(_hurkanSwitch_conf.width !== false && _hurkanSwitch_conf.responsive === false){
_hurkanSwitch_conf.width = parseInt(_hurkanSwitch_conf.width);
bootstrapContent+=' style="width:'+_hurkanSwitch_conf.width+'px !important" ';
}
bootstrapContent+=' >';
bootstrapContent+='<span class="lbl">'+label+'</span>'+'<span class="hurkanSwitch-switch-cursor-selector"></span></a>';
});
}
}else if($inputElem.attr("type") === 'checkbox'){
for(var i = 0;i<2;i++){
$inputElem.addClass('hurkanSwitch-switch-input');
bootstrapContent+='<a class=" hurkanSwitch-switch-item';
if($inputElem.is(':disabled')){
bootstrapContent+=' disabled ';
}
if(i === 0){
if($inputElem.is(':checked')){
bootstrapContent+=' active ';
if($inputElem.attr("data-on-color")){
bootstrapContent+=' hurkanSwitch-switch-item-color-'+$inputElem.attr("data-on-color");
}else{
bootstrapContent+=' hurkanSwitch-switch-item-color-'+_hurkanSwitch_conf['onColor'];
}
}
bootstrapContent+=' hurkanSwitch-switch-item-status-on';
}else{
if(!$inputElem.is(':checked')){
bootstrapContent+=' active ';
}
if($inputElem.attr("data-off-color")){
bootstrapContent+=' hurkanSwitch-switch-item-color-'+$inputElem.attr("data-off-color");
}else{
bootstrapContent+=' hurkanSwitch-switch-item-color-'+_hurkanSwitch_conf['offColor'];
}
bootstrapContent+=' hurkanSwitch-switch-item-status-off';
}
bootstrapContent+=' "';
if(_hurkanSwitch_conf.width !== false && _hurkanSwitch_conf.responsive === false){
_hurkanSwitch_conf.width = parseInt(_hurkanSwitch_conf.width);
bootstrapContent+=' style="width:'+_hurkanSwitch_conf.width+'px !important" ';
}
bootstrapContent+='>';
if(i === 0){
var label = $inputElem.attr("data-on-title");
if(typeof label === 'undefined'){
label= _hurkanSwitch_conf.onTitle;
}
}else{
var label = $inputElem.attr("data-off-title");
if(typeof label === 'undefined'){
label= _hurkanSwitch_conf.offTitle;
}
}
bootstrapContent+='<span class="lbl">'+label+'</span>';
bootstrapContent+='<span class=" hurkanSwitch-switch-cursor-selector"></span></a>';
}
}
bootstrapContent+='</div>';
bootstrapContent+='</div>';
$thisElem.after(function(){ return bootstrapContent});
var $thisElemNext = $thisElem.next();
if($inputElem.attr("type") === 'radio'){
$thisElemNext.on('click','.hurkanSwitch-switch-box',function(event,param){
if(typeof param === 'undefined' && !param){
var param = false;
}
var selectedType = '';
var $eElem = $thisElemNext.find('.hurkanSwitch-switch-item');
var $activeItem = $(this).find('.active');
if( $item.eq($eElem.not($activeItem).index()).attr('readonly') || $item.eq($eElem.not($activeItem).index()).is(':disabled')){
return;
}
if( $item.eq($eElem.not($activeItem).index()).attr("data-off") || $item.eq($eElem.not($activeItem).index()).attr("data-status") === 'off' || $item.eq($eElem.not($activeItem).index()).attr("data-status") === '0'){
selectedType = 'off';
if(param === false && _hurkanSwitch_conf.offConfirm($(this)) !== true){
return;
}
}else{
selectedType = 'on';
if(param === false && _hurkanSwitch_conf.onConfirm($(this)) !== true){
return;
}
}
$eElem.removeClass('active');
$eElem.not($activeItem).addClass('active');
var $newActive = $(this).find('.active');
$item.eq($newActive.index()).prop('checked',true);
_hurkanSwitch_conf.selected($item.eq($newActive.index()),selectedType);
});
}else{
$thisElemNext.on('click','.hurkanSwitch-switch-box',function(event,param){
var selectedType = '';
var $eElem = $thisElemNext.find('.hurkanSwitch-switch-item');
if(typeof param === 'undefined' && !param){
var param = false;
}
var $active = $thisElemNext.find('.active');
if( $inputElem.attr('readonly') || $inputElem.is(':disabled')){
return;
}
if($active.hasClass('hurkanSwitch-switch-item-status-on')){
selectedType = 'off';
if(param === false && _hurkanSwitch_conf.offConfirm($(this)) !== true){
return;
}
}else{
selectedType = 'on';
if(param === false && _hurkanSwitch_conf.onConfirm($(this)) !== true){
return;
}
}
if(!$inputElem.is(':disabled') && !$inputElem.attr('readonly')){
if($active.hasClass('hurkanSwitch-switch-item-status-on')){
$active.removeClass('active');
$eElem.not($active).addClass('active');
_hurkanSwitch_conf.off($thisElemNext);
}else if($active.hasClass('hurkanSwitch-switch-item-status-off')){
$active.removeClass('active');
$eElem.not($active).addClass('active');
_hurkanSwitch_conf.on($thisElemNext);
}
$inputElem.trigger("click");
_hurkanSwitch_conf.selected($inputElem,selectedType);
}
});
}
};
var _g = [];
return this.each(function(){
$(this).addClass('hurkanSwitch-switch-plugin');
$(this)._radio_button_on();
});
}
$(document).ready(function() {
$(document).on('click change','.hurkanSwitch-switch-input',function(event){
var $this = $(this).parent();
$this.hurkanSwitch($(this).data("_switch_opt"));
});
});
}( jQuery ));