| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/cwd/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;
}
}