p$ $$$%:$ r$8.$$@2[$0$$$$DJ$$ $$$$$SU$$$8@AY$$׃U $^!׃Up$$4׃U4$$`v$((@A$$8X@A$$"S$$ `L$0$Ȱ$$*6v$ N$$$0'$@$а$$AU`k$ `)$#$$0*$P$ذ$$`t$ `,$p$$i$(M$`$$$}@$N$ Y$$@9[$A$pP$$0z$$$ $N[$$W$(O$p$$$$`Q$0Q$$ $A"$ $$)Q$$$ *$$$$ @ $$$$$$@p(Q$y$$$@y$$$@A$׃U^!׃U^!׃U4׃Uk$@$=x$pQ$$ J$(-$ $$ is enabled when updating to 3.11 * * @since 3.11 * * @param string $old_version Previous plugin version. * * @return void */ public function set_option_on_update( $old_version ) { if ( version_compare( $old_version, '3.11', '>=' ) ) { return; } $options = get_option( 'wp_rocket_settings', [] ); if ( 'local' === wp_get_environment_type() ) { $options['optimize_css_delivery'] = 0; $options['remove_unused_css'] = 0; $options['async_css'] = 0; } update_option( 'wp_rocket_settings', $options ); } /** * Updates safelist items for new SaaS compatibility * * @since 3.11.0.2 * * @param string $old_version Previous plugin version. * * @return void */ public function update_safelist_items( $old_version ) { if ( version_compare( $old_version, '3.11.0.2', '>=' ) ) { return; } $options = get_option( 'wp_rocket_settings', [] ); if ( empty( $options['remove_unused_css_safelist'] ) ) { return; } foreach ( $options['remove_unused_css_safelist'] as $key => $value ) { if ( str_contains( $value, '.css' ) ) { continue; } if ( str_starts_with( $value, '(' ) ) { continue; } $options['remove_unused_css_safelist'][ $key ] = '(.*)' . $value; } update_option( 'wp_rocket_settings', $options ); } /** * Display a notice on table missing. * * @return void */ public function display_no_table_notice() { if ( ! $this->can_display_notice() ) { return; } if ( $this->used_css->exists() ) { return; } // translators: %1$s = plugin name, %2$s = table name, %3$s = open tag, %4$s = closing tag. $main_message = esc_html__( '%1$s: Could not create the %2$s table in the database which is necessary for the Remove Unused CSS feature to work. Please check our %3$sdocumentation%4$s.', 'rocket' ); $rucss_database = $this->beacon->get_suggest( 'rucss_database' ); $message = sprintf( // translators: %1$s = plugin name, %2$s = table name, %3$s = open tag, %4$s = closing tag. $main_message, 'WP Rocket', $this->used_css->get_name(), '', '' ); rocket_notice_html( [ 'status' => 'error', 'dismissible' => '', 'message' => $message, 'id' => 'rocket-notice-rucss-missing-table', ] ); } }