PATH:
home
/
lab2454c
/
veritserv.com
/
wp-content
/
plugins
/
popup-maker
/
classes
/
Utils
<?php /** * Cron Utility * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class PUM_Utils_Cron * * @since 1.8.0 */ class PUM_Utils_Cron { /** * PUM_Utils_Cron constructor. */ public function __construct() { add_filter( 'cron_schedules', [ $this, 'add_schedules' ] ); add_action( 'wp', [ $this, 'schedule_events' ] ); } /** * Registers new cron schedules * * @param array $schedules * * @return array */ public function add_schedules( $schedules = [] ) { // Adds once weekly to the existing schedules. $schedules['weekly'] = [ 'interval' => 604800, 'display' => __( 'Once Weekly', 'popup-maker' ), ]; return $schedules; } /** * Schedules our events */ public function schedule_events() { $this->weekly_events(); $this->daily_events(); } /** * Schedule weekly events */ private function weekly_events() { if ( ! wp_next_scheduled( 'pum_weekly_scheduled_events' ) ) { wp_schedule_event( time(), 'weekly', 'pum_weekly_scheduled_events' ); } } /** * Schedule daily events */ private function daily_events() { if ( ! wp_next_scheduled( 'pum_daily_scheduled_events' ) ) { wp_schedule_event( time(), 'daily', 'pum_daily_scheduled_events' ); } } }
[-] Cron.php
[edit]
[-] CSS.php
[edit]
[-] Upgrades.php
[edit]
[+]
..
[-] Config.php
[edit]
[-] Logging.php
[edit]
[-] Array.php
[edit]
[-] Format.php
[edit]
[-] Sanitize.php
[edit]
[-] Prerequisites.php
[edit]
[-] DataStorage.php
[edit]
[-] I10n.php
[edit]
[-] Alerts.php
[edit]
[-] Fields.php
[edit]
[-] .htaccess
[edit]
[-] Template.php
[edit]
[-] Time.php
[edit]
[-] Options.php
[edit]
[-] Cache.php
[edit]