X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/popup-maker/classes/Utils
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
popup-maker
/
classes
/
Utils
/
ðŸ“
..
📄
Alerts.php
(23.16 KB)
📄
Array.php
(13.48 KB)
📄
CSS.php
(3.02 KB)
📄
Cache.php
(3.2 KB)
📄
Config.php
(599 B)
📄
Cron.php
(1.28 KB)
📄
DataStorage.php
(3.25 KB)
📄
Fields.php
(9.23 KB)
📄
Format.php
(3.22 KB)
📄
I10n.php
(3.72 KB)
📄
Logging.php
(8.46 KB)
📄
Options.php
(5.33 KB)
📄
Prerequisites.php
(8.44 KB)
📄
Sanitize.php
(895 B)
📄
Template.php
(6.01 KB)
📄
Time.php
(331 B)
📄
Upgrades.php
(19.56 KB)
Editing: Cron.php
<?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' ); } } }
Upload File
Create Folder