Lines:
1 to 22 of 22
<?php /** * Admin / Heartbeat * * @package EDD * @subpackage Admin * @copyright Copyright (c) 2018, Easy Digital Downloads, LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.8 */ // Exit if accessed directly defined( 'ABSPATH' ) || exit; /* class EDD_Heartbeat */ /* function EDD_Heartbeat::init() – Get things started */ /* function EDD_Heartbeat::heartbeat_received() – Tie into the heartbeat and append our stats */ /* function EDD_Heartbeat::enqueue_scripts() – Load the heartbeat scripts */ /* function EDD_Heartbeat::footer_js() – Inject our JS into the admin footer */ add_action( 'plugins_loaded', array( 'EDD_Heartbeat', 'init' ) );