| @@ -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(); |