PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/fastjobsinc.kerihosting.com/wp-content/plugins/ajax-heartbeat-tool/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/fastjobsinc.kerihosting.com/wp-content/plugins/ajax-heartbeat-tool/plugin.php |
<?php /* Plugin Name: AJAX Heartbeat Tool Version: 1.4 Description: Provides a method of turning the WordPress heartbeat off as well as change some settings. Author: Mikel King Text Domain: ajax-heartbeat-tool License: BSD(3 Clause) License URI: http://opensource.org/licenses/BSD-3-Clause */ /* Copyright (C) 2014, Mikel King, rd.com, (mikel.king AT olivent DOT com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the {organization} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* Turned off ALL WP heartbeats @TODO implement a proper slowdown using the heartbeat API @URL http://pippinsplugins.com/using-the-wordpress-heartbeat-api/ @URL http://code.tutsplus.com/tutorials/the-heartbeat-api-changing-the-pulse--wp-32462 */ class Ajax_Heartbeat_Tool { const VERSION = '1.4'; const INTERVAL = 60; const DISABLED = false; const ENABLED = true; private static $instance; public function __construct() { add_action( 'admin_enqueue_scripts', array( $this, 'unregister_wp_heartbeat' )); add_filter( 'heartbeat_settings', array( $this, 'disable_wp_heartbeat_autostart' )); add_filter( 'heartbeat_settings', array( $this, 'set_wp_heartbeat_interval' )); } /* Will always return the self initiated copy of itself. */ public static function init() { if (function_exists("is_admin") && is_admin() && function_exists('add_filter') && ! self::$initialized) { self::$initialized = true; return( self::$initialized ); } } public static function get_instance() { self::$instance = null; if ( self::$instance === null ) { self::$instance = new static(); } return( self::$instance ); } public function disable_wp_heartbeat_autostart( $settings = null ) { $settings['autostart'] = self::DISABLED; return( $settings ); } public function set_wp_heartbeat_interval( $settings = null ) { $settings['interval'] = self::INTERVAL; return( $settings ); } public function unregister_wp_heartbeat() { global $pagenow; if ( $pagenow != 'post.php' && $pagenow != 'post-new.php' && $pagenow != 'edit.php' ) { wp_deregister_script('heartbeat'); } } } $aht = Ajax_Heartbeat_Tool::get_instance();