%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
' . 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.