Server IP : 172.67.216.182 / Your IP : 162.158.106.122 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/lapma.in/wp-content/plugins/everest-forms/includes/ |
Upload File : |
<?php /** * Routine entries reporting functionality. * * @package EverestForms\Classes * @since 2.0.9 */ defined( 'ABSPATH' ) || exit; /** * Reporting Class. */ class EVF_Reporting { /** * Constructor. * * @since 2.0.9 */ public function __construct() { add_action( 'init', array( $this, 'evf_schedule_entries_report_email' ) ); add_action( 'everest_forms_settings_saved', array( $this, 'evf_cron_schedule_clearer' ) ); add_action( 'everest_forms_stats_report_schedule', array( $this, 'evf_schedule_run' ), 10, 2 ); } /** * Clears the scheduled events. * * @since 2.0.9 */ public function evf_cron_schedule_clearer() { $evf_report_cron = new EVF_Report_Cron(); $evf_report_cron->evf_schedule_clear_all(); } /** * Runs the scheduling events. * * @since 2.0.9 */ public function evf_schedule_run() { $evf_report_cron = new EVF_Report_Cron(); $evf_report_cron->evf_report_form_statistics_send(); } /** * Schedule the entries reporting routine email. * * @since 2.0.9 */ public static function evf_schedule_entries_report_email() { // Clearing the existing statistics routine email this needs to be done in case the scheduling is changed). $evf_report_cron = new EVF_Report_Cron(); // Check if the routine emailing for form entries is enabled or not. $everest_forms_enable_routine_entries_reporting = get_option( 'everest_forms_enable_entries_reporting' ); $everest_forms_entries_reporting_frequency = ''; $everest_forms_entries_reporting_day = ''; if ( isset( $everest_forms_enable_routine_entries_reporting ) && 'yes' === $everest_forms_enable_routine_entries_reporting ) { // Get the frequency of sending the summary of routine basis. $everest_forms_entries_reporting_frequency = get_option( 'everest_forms_entries_reporting_frequency' ); switch ( $everest_forms_entries_reporting_frequency ) { case 'Daily': $evf_entries_report_summary_offset = '+1 day'; $evf_recurrence = 'daily'; break; case 'Weekly': $everest_forms_entries_reporting_day = get_option( 'everest_forms_entries_reporting_day' ); switch ( $everest_forms_entries_reporting_day ) { case 'tuesday': $evf_entries_report_summary_offset = 'next tuesday'; break; case 'wednesday': $evf_entries_report_summary_offset = 'next wednesday'; break; case 'thursday': $evf_entries_report_summary_offset = 'next thursday'; break; case 'friday': $evf_entries_report_summary_offset = 'next friday'; break; case 'saturday': $evf_entries_report_summary_offset = 'next saturday'; break; case 'sunday': $evf_entries_report_summary_offset = 'next sunday'; break; default: $evf_entries_report_summary_offset = 'next monday'; } $evf_recurrence = 'weekly'; break; case 'Monthly': $evf_entries_report_summary_offset = 'first day of next month'; $evf_recurrence = 'monthly'; break; } // Get midnight time of offset. $evf_midnight_time_offset = gmdate( 'Y-m-d 00:00:00', strtotime( $evf_entries_report_summary_offset ) ); // Get UTC time of offset. $evf_midnight_time_offset_utc = get_gmt_from_date( $evf_midnight_time_offset ); // Get next run. $evf_report_next_run = strtotime( $evf_midnight_time_offset_utc . ' +6 hours' ); // Add to report schedule. $evf_report_cron->evf_schedule_add( $evf_recurrence, $evf_report_next_run ); } } }