mirror of
https://gh.wpcy.net/https://github.com/pawankhated/one-click-wordpress-installer.git
synced 2026-04-22 00:39:17 +08:00
34 lines
No EOL
982 B
PHP
34 lines
No EOL
982 B
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
$update_link = add_query_arg(
|
|
array(
|
|
'page' => 'filebird-settings',
|
|
'tab' => 'tools',
|
|
'autorun' => 'true',
|
|
),
|
|
admin_url( '/options-general.php' )
|
|
);
|
|
|
|
?>
|
|
|
|
<div class="notice notice-warning is-dismissible njt-fb-update-db-noti" id="njt-fb-update-db-noti">
|
|
<div class="njt-fb-update-db-noti-item">
|
|
<h3><?php esc_html_e( 'FileBird 4 Update Required', 'filebird' ); ?></h3>
|
|
</div>
|
|
<div class="njt-fb-update-db-noti-item">
|
|
<p>
|
|
<?php esc_html_e( 'You are using the new FileBird 4. Please update database to view your folders correctly.', 'filebird' ); ?>
|
|
</p>
|
|
</div>
|
|
<div class="njt-fb-update-db-noti-item">
|
|
<p>
|
|
<a class="button button-primary" href="<?php echo esc_url( $update_link ); ?>">
|
|
<strong><?php esc_html_e( 'Update now', 'filebird' ); ?></strong>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|