summaryrefslogtreecommitdiff
blob: 88677e53263ff2bef5a30998b28c7135ed0e7318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

/**
 * WordAds cron tasks
 *
 * @since 4.5.0
 */
class WordAds_Cron {

	/**
	 * Add the actions the cron tasks will use
	 *
	 * @since 4.5.0
	 */
	function __construct() {
		add_action( 'wordads_cron_status', array( $this, 'update_wordads_status' ) );
	}

	/**
	 * Registered scheduled events on activation
	 *
	 * @since 4.5.0
	 */
	static function activate() {
		wp_schedule_event( time(), 'daily', 'wordads_cron_status' );
	}

	/**
	 * Clear scheduled hooks on deactivation
	 *
	 * @since 4.5.0
	 */
	static function deactivate() {
		wp_clear_scheduled_hook( 'wordads_cron_status' );
	}

	/**
	 * Grab WordAds status from WP.com API
	 *
	 * @since 4.5.0
	 */
	static function update_wordads_status() {
		WordAds_API::update_wordads_status_from_api();
	}
}

global $wordads_cron;
$wordads_cron = new WordAds_Cron();