PluginProbe
Hostinger Tools / 3.0.7
Hostinger Tools v3.0.7
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
← All changes | includes/Helper.php +18 -0 3.0.63.0.7 View file →
@@ -69,7 +69,25 @@
69 69 }
70 70
71 71 return $code;
72 72 }
73 +
74 + public function should_plugin_split_notice_shown() {
75 + $plugin_split_notice_hidden = get_transient( 'hts_plugin_split_notice_hidden' );
76 +
77 + if ( $plugin_split_notice_hidden !== false ) {
78 + return false;
79 + }
80 +
81 + if ( ! version_compare( HOSTINGER_VERSION, '3.0.0', '>=' ) ) {
82 + return false;
83 + }
84 +
85 + if ( is_plugin_active( 'hostinger-easy-onboarding/hostinger-easy-onboarding.php' ) ) {
86 + return false;
87 + }
88 +
89 + return true;
90 + }
73 91 }
74 92
75 93 $hostinger_helper = new Helper();