| Server IP : 69.39.225.240 / Your IP : 216.73.216.138 Web Server : Apache System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : reademotions ( 1074) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/reademotions/www/wp-content/plugins/bb-ultimate-addon/modules/uabb-countdown/js/ |
Upload File : |
(function($) {
UABBCountdown = function( settings )
{
this.timer_exp_text = "";
this.settings = settings;
this.nodeClass = '.fl-node-' + settings.id;
this.id = settings.id;
this.timertype = settings.timertype;
this.timerid = '#countdown-' + settings.id;
this.timer_date = settings.timer_date;
this.timer_format = settings.timer_format;
this.timer_layout = settings.timer_layout;
this.timer_labels = settings.timer_labels;
this.timer_labels_singular = settings.timer_labels_singular;
this.redirect_link = settings.redirect_link;
this.redirect_link_target = settings.redirect_link_target;
this.fixed_timer_action = settings.fixed_timer_action;
this.evergreen_timer_action = settings.evergreen_timer_action;
this.evergreen_date_days = settings.evergreen_date_days;
this.evergreen_date_hour = settings.evergreen_date_hour;
this.evergreen_date_minutes = settings.evergreen_date_minutes;
this.evergreen_date_seconds = settings.evergreen_date_seconds;
this.timezone = settings.time_zone;
if( this.timezone == 'NULL') {
this.timezone = null;
}
if ( settings.timer_exp_text ) {
this.timer_exp_text = settings.timer_exp_text;
}
if( this.timertype == "fixed" ) {
this._initFixedTimer();
}
if( this.timertype == "evergreen" ) {
var currdate = '';
var timevar = 0;
if( $.cookie( "countdown-" + settings.id) == undefined ) {
$.cookie( "countdown-" + settings.id, true);
$.cookie( "countdown-" + settings.id + "-currdate", new Date());
$.cookie( "countdown-" + settings.id + "-day", this.evergreen_date_days);
$.cookie( "countdown-" + settings.id + "-hour", this.evergreen_date_hour);
$.cookie( "countdown-" + settings.id + "-min", this.evergreen_date_minutes);
$.cookie( "countdown-" + settings.id + "-sec", this.evergreen_date_seconds);
}
currdate = new Date( $.cookie( "countdown-" + settings.id + "-currdate") );
timevar = ( parseFloat(this.evergreen_date_days*24*60*60) + parseFloat(this.evergreen_date_hour*60*60) + parseFloat(this.evergreen_date_minutes*60) + parseFloat( this.evergreen_date_seconds ) ) * 1000;
currdate.setTime(currdate.getTime() + timevar);
this.timer_date = currdate;
this._initEverGreenTimer();
}
this._initCountdown();
};
UABBCountdown.prototype = {
_initCountdown: function() {
var self = this;
fixed_timer_action = self.fixed_timer_action;
settings = self.settings;
var action = '';
if( self.timertype == "fixed" ) {
action = self.fixed_timer_action;
} else {
action = self.evergreen_timer_action;
}
$.cookie( "countdown-" + settings.id + "expiremsg", null);
$.cookie( "countdown-" + settings.id + "redirect", null);
$.cookie( "countdown-" + settings.id + "redirectwindow", null);
$.cookie( "countdown-" + settings.id + "hide", null);
$.cookie( "countdown-" + settings.id + "reset", null);
$.removeCookie( "countdown-" + settings.id + "expiremsg");
$.removeCookie( "countdown-" + settings.id + "redirect");
$.removeCookie( "countdown-" + settings.id + "redirectwindow");
$.removeCookie( "countdown-" + settings.id + "hide");
$.removeCookie( "countdown-" + settings.id + "reset");
if( action == "msg") {
$.cookie( "countdown-" + settings.id + "expiremsg", settings.expire_message, { expires: 365 } );
} else if( action == "redirect") {
$.cookie( "countdown-" + settings.id + "redirect", settings.redirect_link, { expires: 365 } );
$.cookie( "countdown-" + settings.id + "redirectwindow", settings.redirect_link_target, { expires: 365 } );
} else if( action == "hide") {
$.cookie( "countdown-" + settings.id + "hide", "yes", { expires: 365 } );
} else if( action == 'reset' ) {
$.cookie( "countdown-" + settings.id + "reset", "yes", { expires: 365 } );
}
},
_initFixedTimer: function() {
var self = this,
dateNow = new Date();
if( ( dateNow.getTime() - self.timer_date.getTime() ) > 0 ) {
if( self.fixed_timer_action == 'msg' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).append(self.timer_exp_text);
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text
});
}
} else if( self.fixed_timer_action == 'redirect' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
window.open( self.redirect_link, self.redirect_link_target );
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text
});
}
} else if( self.fixed_timer_action == 'hide' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).countdown('destroy');
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text
});
}
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
});
}
} else {
if( self.fixed_timer_action == 'msg' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text,
});
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
});
}
} else if( self.fixed_timer_action == 'redirect' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text,
onExpiry: self._redirectCounter
});
} else if( self.fixed_timer_action == 'hide' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text,
onExpiry: self._destroyCounter
});
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: self.timer_exp_text
});
}
}
},
_destroyCounter: function() {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
jQuery( this ).countdown('destroy');
}
},
_redirectCounter: function() {
redirect_link = jQuery.cookie( jQuery(this)[0].id + "redirect" );
redirect_link_target = jQuery.cookie( jQuery(this)[0].id + "redirectwindow" );
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
window.open( redirect_link, redirect_link_target );
} else {
return;
}
},
_initEverGreenTimer: function() {
var self = this,
dateNow = new Date();
if( ( dateNow.getTime() - self.timer_date.getTime() ) > 0 ) {
if( self.evergreen_timer_action == 'msg' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).append($.cookie( "countdown-" + self.settings.id + "expiremsg" ));
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: $.cookie( "countdown-" + self.settings.id + "expiremsg" ),
});
}
} else if( self.evergreen_timer_action == 'redirect' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
window.open( self.redirect_link, self.redirect_link_target );
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._redirectCounter
});
}
} else if( self.evergreen_timer_action == 'hide' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).countdown('destroy');
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._destroyCounter
});
}
} else if( self.evergreen_timer_action == 'reset' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._restartCountdown
});
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
});
}
} else {
if( self.evergreen_timer_action == 'msg' ) {
if( parseInt(window.location.href.toLowerCase().indexOf("?fl_builder")) === parseInt(-1) ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
expiryText: $.cookie( "countdown-" + self.settings.id + "expiremsg" ),
});
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
});
}
} else if( self.evergreen_timer_action == 'redirect' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._redirectCounter
});
} else if( self.evergreen_timer_action == 'hide' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._destroyCounter
});
} else if( self.evergreen_timer_action == 'reset' ) {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
onExpiry: self._restartCountdown
});
} else {
$( self.timerid ).countdown({
until: self.timer_date,
format: self.timer_format,
layout: self.timer_layout,
labels: self.timer_labels.split(","),
timezone: self.timezone,
labels1: self.timer_labels_singular.split(","),
});
}
}
},
_restartCountdown: function() {
var self = this,
id = self.id;
$.cookie( id + "-currdate", new Date() );
currdate = new Date( $.cookie( id + "-currdate") );
var evergreen_date_days = $.cookie( id + "-day" );
var evergreen_date_hour = $.cookie( id + "-hour" );
var evergreen_date_minutes = $.cookie( id + "-min" );
var evergreen_date_seconds = $.cookie( id + "-sec" );
var timevar = ( parseFloat(evergreen_date_days*24*60*60) + parseFloat(evergreen_date_hour*60*60) + parseFloat(evergreen_date_minutes*60) + parseFloat( evergreen_date_seconds ) ) * 1000;
currdate.setTime(currdate.getTime() + timevar);
self.timer_date = currdate;
jQuery(self).countdown('option', {until: self.timer_date} );
},
};
})(jQuery);