/home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/deprecated
NameSizeModeActions
classes/-0755rm
Engine/-0755rm
subscriber/-0755rm
vendors/-0755rm
3.2.php123370644editdlrm
3.3.php314600644editdlrm
3.4.php180620644editdlrm
3.5.php298090644editdlrm
3.6.php345000644editdlrm
3.7.php86290644editdlrm
3.8.php101740644editdlrm
3.9.php37580644editdlrm
3.10.php43610644editdlrm
3.11.php78870644editdlrm
3.12.php221620644editdlrm
3.13.php28500644editdlrm
3.14.php131230644editdlrm
deprecated.php1072530644editdlrm
DeprecatedClassTrait.php29180644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/deprecated/3.10.php (4361B)
$notice['result'], 'message' => $notice['message'], ] ); } /** * Purge OPCache content in Admin Bar * * @since 3.10.8 deprecated * @since 2.7 */ function do_admin_post_rocket_purge_opcache() { // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals _deprecated_function( __FUNCTION__ . '()', '3.10.8' ); if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_GET['_wpnonce'] ), 'rocket_purge_opcache' ) ) { wp_nonce_ays( '' ); } if ( ! current_user_can( 'rocket_purge_opcache' ) ) { return; } $reset_opcache = rocket_reset_opcache(); if ( ! $reset_opcache ) { $op_purge_result = [ 'result' => 'error', 'message' => __( 'OPcache purge failed.', 'rocket' ), ]; } else { $op_purge_result = [ 'result' => 'success', 'message' => __( 'OPcache successfully purged', 'rocket' ), ]; } set_transient( get_current_user_id() . '_opcache_purge_result', $op_purge_result ); wp_safe_redirect( esc_url_raw( wp_get_referer() ) ); die(); }