ב הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותشسdggרות הל555ה התafhgfh
במסgרות ה gh//شی הוא חיבור של הרב יהושע בועז שתוכנו מראי מקומות למקורותהתנדaghhhhו12ין יעל, המעציfghfghfע
/
www-data
/
sites
/
naresh-newwordpress
/
wp-content
/
plugins
/
hummingbird-performance
/
_src
/
js
/
Upload FileeE
HOME
/* global wphb */ const MixPanel = require( 'mixpanel-browser' ); ( function() { 'use strict'; let hbCriticalUpsellClick = false; window.wphbMixPanel = { /** * Init super properties (common with every request). */ init() { if ( 'undefined' === typeof wphb.mixpanel || ! wphb.mixpanel.enabled ) { return; } MixPanel.init( '5d545622e3a040aca63f2089b0e6cae7', { opt_out_tracking_by_default: ! wphb.mixpanel.enabled, ip: false, } ); MixPanel.register( { plugin: wphb.mixpanel.plugin, plugin_type: wphb.mixpanel.plugin_type, plugin_version: wphb.mixpanel.plugin_version, wp_version: wphb.mixpanel.wp_version, wp_type: wphb.mixpanel.wp_type, locale: wphb.mixpanel.locale, active_theme: wphb.mixpanel.active_theme, php_version: wphb.mixpanel.php_version, mysql_version: wphb.mixpanel.mysql_version, server_type: wphb.mixpanel.server_type, } ); }, /** * Opt in tracking. */ optIn() { wphb.mixpanel.enabled = true; this.init(); MixPanel.opt_in_tracking(); }, /** * Opt out tracking. */ optOut() { MixPanel.opt_out_tracking(); }, /** * Deactivate feedback. * * @param {string} reason Deactivation reason. * @param {string} feedback Deactivation feedback. */ deactivate( reason, feedback = '' ) { this.track( 'plugin_deactivate', { reason, feedback, } ); }, /** * Track feature enable. * * @param {string} feature Feature name. */ enableFeature( feature ) { this.track( 'plugin_feature_activate', { feature } ); }, /** * Track Delay JS Upsell event. * * @param {string} feature Feature name. */ trackDelayJSUpsell( feature ) { this.track( 'js_delay_upsell', feature ); }, /** * Track Critical CSS Upsell event. * * @param {object} properties Properties. */ trackCriticalCSSUpsell( properties ) { if ( ! hbCriticalUpsellClick ) { hbCriticalUpsellClick = true; this.track( 'critical_css_upsell', properties ); } }, /** * Track Delay JS Upsell event. * * @param {object} properties Properties. */ trackDelayJSEvent( properties ) { if ( 'activate' === properties.update_type ) { this.enableFeature( 'JS Delay' ); } if ( 'deactivate' === properties.update_type ) { this.disableFeature( 'JS Delay' ); } this.track( 'js_delay_updated', properties ); }, /** * Track AO updated event. * * @param {object} properties Properties. */ trackAOUpdated( properties ) { const mode = properties.Mode.charAt(0).toUpperCase() + properties.Mode.slice(1); properties.Mode = mode; this.track( 'ao_updated', properties ); }, /** * Track feature disable. * * @param {string} feature Feature name. */ disableFeature( feature ) { this.track( 'plugin_feature_deactivate', { feature } ); }, /** * Track an event. * * @param {string} event Event ID. * @param {Object} data Event data. */ track( event, data = {} ) { if ( 'undefined' === typeof wphb.mixpanel || ! wphb.mixpanel.enabled ) { return; } if ( ! MixPanel.has_opted_out_tracking() ) { MixPanel.track( event, data ); } } }; }() );