forked from Really-Simple-Plugins/really-simple-ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multisite-cron.php
38 lines (33 loc) · 1.27 KB
/
multisite-cron.php
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
<?php
defined('ABSPATH') or die("you do not have access to this page!");
// add custom time to cron
add_filter('cron_schedules', 'rsssl_filter_cron_schedules');
function rsssl_filter_cron_schedules($schedules)
{
$schedules['oneminute'] = array(
'interval' => 60, // seconds
'display' => __('Once every minute')
);
return $schedules;
}
add_action('plugins_loaded', 'rsssl_schedule_cron', 15);
function rsssl_schedule_cron()
{
if (get_site_option('rsssl_ssl_activation_active') || get_site_option('rsssl_ssl_deactivation_active')) {
if (!wp_next_scheduled('rsssl_ssl_process_hook')) {
wp_schedule_event(time(), 'oneminute', 'rsssl_ssl_process_hook');
}
} else {
wp_clear_scheduled_hook('rsssl_ssl_process_hook');
}
/*
* On some sites rsssl_ssl_process_hook will prevent conversion from happening (stuck on 0%).
* If that happens, user can click a link (in class-multisite.php) to fire ssl process on admin_init hook
*
*/
if (get_site_option('run_ssl_process_hook_switched') !== false) {
add_action('admin_init', array(RSSSL()->rsssl_multisite, 'run_ssl_process'));
} else {
add_action('rsssl_ssl_process_hook', array(RSSSL()->rsssl_multisite, 'run_ssl_process'));
}
}