????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./eaabusiness.com/wp-content/plugins/everest-forms/includes/ |
Upload File : |
<?php /** * Everest Forms Cron * * @package EverestForms * @since 1.9.8 */ defined( 'ABSPATH' ) || exit; /** * EVF_Cron Class * * This class handles scheduled events */ class EVF_Cron { /** * Init WordPress hook * * @see EVF_Cron::weekly_events() */ public function __construct() { add_filter( 'cron_schedules', array( $this, 'add_schedules' ) ); add_action( 'init', array( $this, 'schedule_events' ) ); } /** * Registers new cron schedules * * @param array $schedules Schedules. */ public function add_schedules( $schedules = array() ) { // Adds once in biweekly to the existing schedules. $schedules['biweekly'] = array( 'interval' => ( DAY_IN_SECONDS * 15 ), 'display' => __( 'Every 15 days', 'everest-forms' ), ); // Adds once in a day to the existing schedules. $schedules['evf_daily'] = array( 'interval' => \DAY_IN_SECONDS, 'display' => esc_html__( 'Email entries summary once a day', 'everest-forms' ), ); // Adds once a week in to the existing schedules. $schedules['evf_weekly'] = array( 'interval' => \WEEK_IN_SECONDS, 'display' => esc_html__( 'Email entries summary once a week', 'everest-forms' ), ); // Adds once a month in the existing schedules. $schedules['evf_monthly'] = array( 'interval' => \MONTH_IN_SECONDS, 'display' => esc_html__( 'Email entries summary once a month', 'everest-forms' ), ); return $schedules; } /** * Schedules our events * * @return void */ public function schedule_events() { $this->biweekly_events(); } /** * Schedule biweekly events * * @return void */ private function biweekly_events() { if ( ! wp_next_scheduled( 'everest_forms_biweekly_scheduled_events' ) ) { wp_schedule_event( time(), 'biweekly', 'everest_forms_biweekly_scheduled_events' ); } } } $everest_forms_cron = new EVF_Cron();