These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
1 ignored issue
–
show
|
|||
2 | |||
3 | defined( 'WPINC' ) || die; |
||
4 | |||
5 | class Pollux_Activate |
||
1 ignored issue
–
show
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.
You can fix this by adding a namespace to your class: namespace YourVendor;
class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries. ![]() |
|||
6 | { |
||
7 | const BASENAME = 'pollux.php'; |
||
8 | const MIN_PHP_VERSION = '5.6.0'; |
||
9 | const MIN_WORDPRESS_VERSION = '4.7.0'; |
||
10 | |||
11 | /** |
||
12 | * @var static |
||
13 | */ |
||
14 | protected static $instance; |
||
15 | |||
16 | /** |
||
17 | * @return bool |
||
18 | */ |
||
19 | public static function isValid() |
||
20 | { |
||
21 | return static::isPhpValid() && static::isWpValid(); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return bool |
||
26 | */ |
||
27 | public static function isPhpValid() |
||
28 | { |
||
29 | return !version_compare( PHP_VERSION, static::MIN_PHP_VERSION, '<' ); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return bool |
||
34 | */ |
||
35 | public static function isWpValid() |
||
36 | { |
||
37 | global $wp_version; |
||
38 | return !version_compare( $wp_version, static::MIN_WORDPRESS_VERSION, '<' ); |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return bool |
||
43 | */ |
||
44 | public static function shouldDeactivate() |
||
45 | { |
||
46 | if( empty( static::$instance )) { |
||
47 | static::$instance = new static; |
||
48 | } |
||
49 | if( !static::isValid() ) { |
||
50 | add_action( 'activated_plugin', array( static::$instance, 'deactivate' )); |
||
51 | add_action( 'admin_notices', array( static::$instance, 'deactivate' )); |
||
52 | return true; |
||
53 | } |
||
54 | return false; |
||
55 | } |
||
56 | |||
57 | /** |
||
58 | * @return void |
||
59 | */ |
||
60 | public function deactivate( $plugin ) |
||
61 | { |
||
62 | if( static::isValid() )return; |
||
63 | $pluginName = plugin_basename( dirname( realpath( __FILE__ )).'/'.static::BASENAME ); |
||
64 | if( $plugin == $pluginName ) { |
||
65 | $this->redirect(); //exit |
||
66 | } |
||
67 | deactivate_plugins( $pluginName ); |
||
68 | $this->printNotice(); |
||
69 | } |
||
70 | |||
71 | /** |
||
72 | * @return void |
||
73 | */ |
||
74 | protected function redirect() |
||
75 | { |
||
76 | wp_safe_redirect( self_admin_url( sprintf( 'plugins.php?plugin_status=%s&paged=%s&s=%s', |
||
77 | filter_input( INPUT_GET, 'plugin_status' ), |
||
78 | filter_input( INPUT_GET, 'paged' ), |
||
79 | filter_input( INPUT_GET, 's' ) |
||
80 | ))); |
||
81 | exit; |
||
82 | } |
||
83 | |||
84 | /** |
||
85 | * @return void |
||
86 | */ |
||
87 | protected function printNotice() |
||
88 | { |
||
89 | $noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>'; |
||
90 | $messages = array( |
||
91 | __( 'The Pollux plugin was deactivated.', 'pollux' ), |
||
92 | __( 'Sorry, this plugin requires %s or greater in order to work properly.', 'pollux' ), |
||
93 | __( 'Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'pollux' ), |
||
94 | __( 'PHP version', 'pollux' ).' '.static::MIN_PHP_VERSION, |
||
95 | __( 'WordPress version', 'pollux' ).' '.static::MIN_WORDPRESS_VERSION, |
||
96 | __( 'Update WordPress', 'pollux' ), |
||
97 | ); |
||
98 | if( !static::isPhpValid() ) { |
||
99 | printf( $noticeTemplate, |
||
100 | $messages[0], |
||
101 | sprintf( $messages[1], $messages[3] ), |
||
102 | sprintf( $messages[2], PHP_VERSION ) |
||
103 | ); |
||
104 | } |
||
105 | else if( !static::isWpValid() ) { |
||
106 | printf( $noticeTemplate, |
||
107 | $messages[0], |
||
108 | sprintf( $messages[1], $messages[4] ), |
||
109 | sprintf( '<a href="%s">%s</a>', admin_url( 'update-core.php' ), $messages[5] ) |
||
110 | ); |
||
111 | } |
||
112 | } |
||
113 | } |
||
114 |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.