add( 'options_api', new Options( 'wp_rocket_' ) ); $container->add( 'template_path', WP_ROCKET_PATH . 'views' ); $container->addServiceProvider( OptionsServiceProvider::class ); $container->addServiceProvider( BeaconServiceProvider::class ); $container->addServiceProvider( SupportServiceProvider::class ); $container->addServiceProvider( 'WP_Rocket\Engine\Deactivation\ServiceProvider' ); $container->addServiceProvider( 'WP_Rocket\ThirdParty\Hostings\ServiceProvider' ); $host_type = HostResolver::get_host_service(); if ( ! empty( $host_type ) ) { array_unshift( self::$deactivators, $host_type ); } foreach ( self::$deactivators as $deactivator ) { $container->get( $deactivator ); } if ( ! isset( $_GET['rocket_nonce'] ) || ! wp_verify_nonce( sanitize_key( $_GET['rocket_nonce'] ), 'force_deactivation' ) ) { $causes = []; // .htaccess problem. if ( $is_apache && ! rocket_direct_filesystem()->is_writable( get_home_path() . '.htaccess' ) ) { $causes[] = 'htaccess'; } /** * Filters the causes which can prevent the deactivation of the plugin * * @since 3.6.3 * * @param array $causes An array of causes to pass to the notice. */ $causes = (array) apply_filters( 'rocket_prevent_deactivation', $causes ); if ( count( $causes ) ) { set_transient( get_current_user_id() . '_donotdeactivaterocket', $causes ); wp_safe_redirect( wp_get_referer() ); die(); } } // Delete config files. rocket_delete_config_file(); $sites_number = count( _rocket_get_php_files_in_dir( rocket_get_constant( 'WP_ROCKET_CONFIG_PATH' ) ) ); if ( ! $sites_number ) { // Delete All WP Rocket rules of the .htaccess file. flush_rocket_htaccess( true ); } // Update customer key & licence. wp_remote_get( WP_ROCKET_WEB_API . 'pause-licence.php', [ 'blocking' => false, ] ); // Delete transients. delete_transient( 'rocket_check_licence_30' ); delete_transient( 'rocket_check_licence_1' ); delete_transient( 'rocket_rucss_as_tables_count' ); delete_site_transient( 'update_wprocket_response' ); delete_site_transient( 'wp_rocket_update_data' ); // Delete user metadata. rocket_renew_box( 'preload_notice' ); // Unschedule WP Cron events. wp_clear_scheduled_hook( 'rocket_cache_dir_size_check' ); /** * WP Rocket deactivation. * * @since 3.6.3 add $sites_count parameter. * @since 3.1.5 * * @param int $sites_number Number of WP Rocket config files found. */ do_action( 'rocket_deactivation', $sites_number ); } }