HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
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();