| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/sureforms/inc/ |
Upload File : |
<?php
/**
* Sureforms flush rewrite rules.
*
* @package sureforms.
* @since 0.0.1
*/
namespace SRFM\Inc;
use SRFM\Inc\Global_Settings\Email_Summary;
use SRFM\Inc\Traits\Get_Instance;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Activation Class.
*
* @since 0.0.1
*/
class Activator {
use Get_Instance;
/**
* Activation handler function.
*
* @since 0.0.1
* @return void
*/
public static function activate() {
$email_summary_options = get_option( 'srfm_email_summary_settings_options' );
$enable_email_summary = is_array( $email_summary_options ) ? $email_summary_options['srfm_email_summary'] : '';
if ( $enable_email_summary ) {
Email_Summary::schedule_weekly_entries_email();
}
/**
* Reset rewrite rules to avoid go to permalinks page
* through deleting the database options to force WP to do it
* because of on activation not work well flush_rewrite_rules()
*/
delete_option( 'rewrite_rules' );
update_option( '__srfm_do_redirect', true );
}
}