2018-01-26 15:50:15 +01:00

73 lines
3.1 KiB
PHP

<?php
/**
* Copyright (C) 2014-2017 ServMask Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
*/
class Ai1wm_Cron {
/*
* Schedules a hook which will be executed by the WordPress
* actions core on a specific interval
*
* @param string $hook Event hook
* @param string $recurrence How often the event should reoccur
* @param array $args Arguments to pass to the hook function(s)
* @return mixed
*/
public static function add( $hook, $recurrence, $args = array() ) {
$args = array_slice( func_get_args(), 2 );
$schedules = wp_get_schedules();
if ( isset( $schedules[ $recurrence ] ) && ( $current = $schedules[ $recurrence ] ) ) {
return wp_schedule_event( time() + $current['interval'], $recurrence, $hook, $args );
}
}
/*
* Un-schedules all previously-scheduled cron jobs using a particular
* hook name or a specific combination of hook name and arguments.
*
* @param string $hook Event hook
* @return void
*/
public static function clear( $hook ) {
$crons = _get_cron_array();
if ( empty( $crons ) ) {
return;
}
foreach ( $crons as $timestamp => $cron ) {
if ( ! empty( $cron[ $hook ] ) ) {
unset( $crons[ $timestamp ][ $hook ] );
// Unset empty timestamps
if ( empty( $crons[ $timestamp ] ) ) {
unset( $crons[ $timestamp ] );
}
}
}
return _set_cron_array( $crons );
}
}