%s

', sprintf( /* translators: 1: PERFLAB_SQLITE_DB_DROPIN_VERSION constant, 2: db.php drop-in path */ __( 'The SQLite Integration module is active, but the %1$s constant is missing. It appears you already have another %2$s file present on your site. ', 'performance-lab' ), 'PERFLAB_SQLITE_DB_DROPIN_VERSION', '' . esc_html( basename( WP_CONTENT_DIR ) ) . '/db.php' ) ); return; } // The dropin db.php is missing. printf( '

%s

', sprintf( /* translators: 1: db.php drop-in path, 2: Admin URL to deactivate the module */ __( 'The SQLite Integration module is active, but the %1$s file is missing. Please deactivate the module and re-activate it to try again.', 'performance-lab' ), '' . esc_html( basename( WP_CONTENT_DIR ) ) . '/db.php', esc_url( admin_url( 'options-general.php?page=' . PERFLAB_MODULES_SCREEN ) ) ) ); } add_action( 'admin_notices', 'perflab_sqlite_plugin_admin_notice' ); // Add the admin notices.