![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/claquemagazineawards.com/wp-content/themes/exs/inc/ |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } define( 'EXS_DEV_MODE', is_dir( EXS_THEME_PATH . '/dev' ) ); define( 'EXS_EXTRA', is_dir( EXS_THEME_PATH . '/extra' ) ); define( 'EXS_FR', is_dir( EXS_THEME_PATH . '/freemius' ) ); define( 'EXS_WP', is_dir( EXS_THEME_PATH . '/inc/wp' ) ); define( 'EXS_TM', is_dir( EXS_THEME_PATH . '/inc/tm' ) ); if ( ! class_exists( 'ExS' ) ) : class ExS { public $state; /** * Singleton */ public static function instance() { static $instance = null; if( null === $instance ) { $instance = new static(); } return $instance; } private function __construct() {} private function __clone() {} public function __sleep() {} public function __wakeup() {} public function set( $key, $value ) { $this->state[ $key ] = $value; } public function get( $key ) { return ! empty( $this->state[ $key ] ) ? $this->state[ $key ] : false; } } endif; //class exists