| Server IP : 172.67.71.254 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/rimskannur/public_html/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/ |
Upload File : |
<?php
declare(strict_types=1);
namespace WP_Rocket\Engine\Saas\Admin;
use WP_Rocket\Admin\Options_Data;
use WP_Rocket\Engine\Admin\Settings\DataClearingTrait;
class Clean {
use DataClearingTrait;
/**
* Truncate SaaS tables when clicking on the dashboard button
*
* @return void
*/
public function clean_saas() {
if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_GET['_wpnonce'] ), 'rocket_clean_saas' ) ) {
wp_nonce_ays( '' );
}
/**
* Filters the value of the SaaS clean
*
* @since 3.16
*
* @param array $clean An array containing the status and message.
*/
$clean = wpm_apply_filters_typed( 'array', 'rocket_saas_clean_all', [] );
$this->clean_data( $clean, 'rocket_saas_clean_message' );
}
/**
* Clean SaaS for the current URL.
*
* @return void
*/
public function clean_url_saas() {
check_admin_referer( 'rocket_clean_saas_url' );
/**
* Fires when cleaning a single URL for the Saas
*
* @since 3.16
*/
do_action( 'rocket_saas_clean_url' );
wp_safe_redirect( esc_url_raw( wp_get_referer() ) );
rocket_get_constant( 'WP_ROCKET_IS_TESTING', false ) ? wp_die() : exit;
}
}