-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcompat.php
38 lines (30 loc) · 1.13 KB
/
compat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
namespace ACF_FCE;
class Compatibility {
/**
* admin_init hook callback
*/
public static function admin_init() {
// Not on ajax
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
// Check activation
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
trigger_error( sprintf( __( 'Flexible Content Extended for Advanced Custom Fields requires PHP version %s or greater to be activated.', 'acf-flexible-content-extended' ), ACF_FCE_MIN_PHP_VERSION ) );
// Deactive self
deactivate_plugins( ACF_FCE_DIR . 'acf-flexible-content-extended.php' );
unset( $_GET['activate'] );
add_action( 'admin_notices', array( __CLASS__, 'admin_notices' ) );
}
/**
* Notify the user about the incompatibility issue.
*/
public static function admin_notices() {
echo '<div class="notice error is-dismissible">';
echo '<p>' . esc_html( sprintf( __( 'Flexible Content Extended for Advanced Custom Fields requires PHP version %s or greater to be activated. Your server is currently running PHP version %s.', 'acf-flexible-content-extended' ), ACF_FCE_MIN_PHP_VERSION, PHP_VERSION ) ) . '</p>';
echo '</div>';
}
}