-
Notifications
You must be signed in to change notification settings - Fork 2
/
compat.php
40 lines (33 loc) · 1.23 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
39
40
<?php namespace BEA\Media_Analytics;
class Compatibility {
/**
* admin_init hook callback
*
* @since 0.1
*/
public static function admin_init() {
// Not on ajax
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
// Check activation
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
// Load the textdomain
load_plugin_textdomain( 'bea-media-analytics', false, BEA_MEDIA_ANALYTICS_PLUGIN_DIRNAME . '/languages' );
trigger_error( sprintf( __( 'Plugin Boilerplate requires PHP version %s or greater to be activated.', 'bea-media-analytics' ), BEA_MEDIA_ANALYTICS_MIN_PHP_VERSION ) );
// Deactive self
deactivate_plugins( BEA_MEDIA_ANALYTICS_DIR . 'bea-media-analytics.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( __( 'Plugin Boilerplate require PHP version %s or greater to be activated. Your server is currently running PHP version %s.', 'bea-media-analytics' ), BEA_MEDIA_ANALYTICS_MIN_PHP_VERSION, PHP_VERSION ) ) . '</p>';
echo '</div>';
}
}