HEX
Server: Apache
System: Linux host17.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
User: shrsglobal (7178)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: //home/shrsglobal/www/wp-content/plugins/astra-addon/addons/lifterlms/class-astra-ext-lifterlms.php
<?php
/**
 * Typography Extension
 *
 * @package Astra Addon
 */

define( 'ASTRA_ADDON_EXT_LIFTERLMS_DIR', ASTRA_EXT_DIR . 'addons/lifterlms/' );
define( 'ASTRA_ADDON_EXT_LIFTERLMS_URI', ASTRA_EXT_URI . 'addons/lifterlms/' );

if ( ! class_exists( 'Astra_Ext_LifterLMS' ) ) {

	/**
	 * Typography Initial Setup
	 *
	 * @since 1.0.0
	 */
	// @codingStandardsIgnoreStart
	class Astra_Ext_LifterLMS {
		// @codingStandardsIgnoreEnd

		/**
		 * Member Variable
		 *
		 * @var object instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor function that initializes required actions and hooks
		 */
		public function __construct() {

			// If plugin - 'LifterLMS' not exist then return.
			if ( class_exists( 'LifterLMS' ) ) {

				require_once ASTRA_ADDON_EXT_LIFTERLMS_DIR . 'classes/class-astra-ext-lifterlms-markup.php';
				require_once ASTRA_ADDON_EXT_LIFTERLMS_DIR . 'classes/class-astra-ext-lifterlms-loader.php';

				// Include front end files.
				if ( ! is_admin() ) {
					require_once ASTRA_ADDON_EXT_LIFTERLMS_DIR . 'classes/dynamic.css.php';
				}
			}

		}
	}

	/**
	 *  Kicking this off by calling 'get_instance()' method
	 */
	Astra_Ext_LifterLMS::get_instance();

}