p$ $ $ $ % : $
r$ 8.$ $ @2[$ 0 $ $ $ $ D J $ $ $ $ $ $ $ S U $ $ $ 8@A Y$ $ ׃U
$ ^!׃U p$ $ 4׃U 4$ $ `v$ ( (@A $ $ 8 X@A $ $ "S$ $ ` L$ 0$ Ȱ$ $ * 6 v$
N$ $ $ 0 '$ @$ а$ $ A U `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 ^!׃U 4׃U k$ @$ = 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',
]
);
}
}