# cf7-database/trunk/admin/Fallback.php

Database for Contact Form 7, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/cf7-database/trunk/code/admin/Fallback.php
- Raw: https://pluginprobe.com/plugins/cf7-database/trunk/raw/admin/Fallback.php
- Modified: 2024-03-22T09:08:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/cf7-database/trunk/code/admin/Fallback.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;
add_action(
	'admin_notices',
	function() {
		if ( current_user_can( 'activate_plugins' ) ) {
			?>
<div class="notice notice-error is-dismissible">
	<p>
		<strong><?php esc_html_e( 'It looks like you have another Contact Form 7 Database version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'cf7-database' ); ?></strong>
	</p>
</div>
			<?php
			if ( isset( $_GET['activate'] ) ) {
				unset( $_GET['activate'] );
			}
		}
	}
);

```
