-
Notifications
You must be signed in to change notification settings - Fork 0
/
em-pro-compatibility.php
executable file
·39 lines (38 loc) · 2.38 KB
/
em-pro-compatibility.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
<?php
//in the event the Pro add-on is installed but fails to meet the minimum EM_PRO_MIN_VERSION, this file will be executed in case extra actions are needed
define('EM_COMPAT_MESSAGE_BE_GONE',"Only Administrators see this message. To hide critical messages and prevent this safety measure, you can add <code>define('EMP_DISABLE_CRITICAL_WARNINGS', true);</code> as a new line in your wp-config.php file.");
if( EMP_VERSION < 2.377 && (!defined('EMP_2376_FIXED') || !EMP_2376_FIXED) ){
//we changed some function scopes to static, so Pro must be updated or modified to prevent fatal errors and should not be activated
//we're deactivating Pro until that happens
global $EM_Pro;
remove_action( 'plugins_loaded', array(&$EM_Pro, 'init') );
function em_empro_lt_2376_notice(){
?>
<div class="error">
<p>Due to some inevitable changes to some code in Events Manager, it is necessary to use Pro 2.3.7.7 or later. We have disabled the Pro plugin as a safety precaution.</p>
<p><a href="http://wp-events-plugin.com/blog/2014/04/15/important-changes-to-5-5-3-and-pro-2-3-8-versions/">Click here for detailed information about this change</a>, which includes some simple instructions for fixing older versions of Pro without requiring an update. </p>
<p><?php echo EM_COMPAT_MESSAGE_BE_GONE; ?></p>
</div>
<?php
}
if( em_wp_is_super_admin() ){
add_action ( 'admin_notices', 'em_empro_lt_2376_notice', 100 );
add_action ( 'network_admin_notices', 'em_empro_lt_2376_notice', 100 );
}
}
if( version_compare(EMP_VERSION, '3.0', '<') && (!defined('EMP_3_FIXED') || !EMP_3_FIXED) ){
function em_empro_lt_3_notice(){
?>
<div class="error">
<p>Due to some inevitable changes to some code in Events Manager 6.1, it is necessary to use Pro 3.0 or later, this change affects attendee forms.</p>
<p><a href="https://wp-events-plugin.com/documentation/v6-migration/">Click here for more information about these changes</a>, which includes a line of code you can use for fixing older versions of Pro without requiring an update. </p>
<p>You can remove this specific critical message by adding <code>define('EMP_3_FIXED', true);</code> to your wp-config.php file.</p>
<p><?php echo EM_COMPAT_MESSAGE_BE_GONE; ?></p>
</div>
<?php
}
if( em_wp_is_super_admin() ){
add_action ( 'admin_notices', 'em_empro_lt_3_notice', 100 );
add_action ( 'network_admin_notices', 'em_empro_lt_3_notice', 100 );
}
}