File: /home/posscale/www/WP-POS/wp-content/themes/angle/functions/wpzoom/components/guard-shell.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Main WPZOOM_Guard_Shell class.
*/
class WPZOOM_Guard_Shell {
/**
* Constructor.
*/
public function __construct() {
if( ! self::is_guard_active() ) {
remove_action( 'admin_notices', 'WPZOOM_Onboarding_License::license_notice', 99 );
}
}
public static function is_guard_active() {
$active_themes = array(
'academica_pro',
'academica_pro_3',
'alpha',
'angle',
'capital',
'compass',
'delicio',
'domino',
'energy',
'foodica',
'foodica-pro',
'gazeti',
'insight',
'inspiro',
'magazinum',
'meeta',
'medicus',
'modena',
'monte',
'originmag',
'petit',
'photonote',
'presence',
'prologue',
'seasons',
'startingup',
'tempo',
'tribune',
'venture',
'videobox',
'videozoom',
'vimes',
'wpzoom-balance',
'wpzoom-chronicle',
'wpzoom-cookbook',
'wpzoom-cookely',
'wpzoom-derive',
'wpzoom-diamond',
'wpzoom-discovery',
'wpzoom-eclipse',
'wpzoom-expedition',
'wpzoom-gourmand',
'wpzoom-indigo',
'wpzoom-inspiro-pro',
'wpzoom-prime-news',
'wpzoom-reel',
'wpzoom-rezzo',
'wpzoom-velure',
'yamidoo',
);
if( ! in_array( WPZOOM::$theme_raw_name, $active_themes ) ) {
return false;
}
return true;
}
}
new WPZOOM_Guard_Shell();