HEX
Server: Apache
System: Linux c036.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: c0400220 (20588)
PHP: 7.4.33
Disabled: system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval, dl, imap_mail, libvirt_connect, gnupg_init, unsetenv, apache_setenv, pcntl_exec, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_get_handler, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_getpriority, pcntl_setpriority, pcntl_async_signals, opcache_get_status, opcache_reset, opcache_get_configuration
Upload Files
File: /home/c0400220/public_html/2020/wp-content/plugins/everest-forms/includes/class-evf-cron.php
<?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();