![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/plugins/wp-rocket/inc/Engine/Saas/Admin/ |
<?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; } }