PluginProbe
FileBird – WordPress Media Library Folders & File Manager / 6.3.4
FileBird – WordPress Media Library Folders & File Manager v6.3.4
6.5.8 6.5.7 6.5.5 6.5.4 trunk 4.3.1 5.1.6 5.3 5.3.2 5.4.3 5.4.4 5.4.5 5.5 5.5.3 5.5.5 5.5.8 5.5.8.1 5.6 5.6.1 5.6.2 5.6.3 5.6.4 6.2.3 6.2.5 6.3 All 36 releases
filebird / includes / Fallback.php

Fallback.php in FileBird – WordPress Media Library Folders & File Manager 6.3.4, at includes/Fallback.php

25 lines 846 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4 add_action(
5 'admin_notices',
6 function() {
7 if ( current_user_can( 'activate_plugins' ) ) {
8 ?>
9 <div class="notice notice-error is-dismissible filebird-notice">
10 <p>
11 <strong><?php esc_html_e( 'It looks like you have another FileBird version installed, please delete it before activating this new version. All of the settings and data are still preserved.', 'filebird' ); ?>
12 <a
13 href="https://ninjateam.gitbook.io/filebird/how-to-update-filebird"><?php esc_html_e( 'Read more details.', 'filebird' ); ?></a>
14 </strong>
15 </p>
16 </div>
17 <?php
18 //phpcs:ignore WordPress.Security.NonceVerification.Recommended
19 if ( isset( $_GET['activate'] ) ) {
20 //phpcs:ignore WordPress.Security.NonceVerification.Recommended
21 unset( $_GET['activate'] );
22 }
23 }
24 }
25 );