File "class-astra-sites-compatibility-learndash.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/astra-sites/inc/classes/compatibility/learndash/class-astra-sites-compatibility-learndash.php
File size: 1.1 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Compatibility for 'LearnDash'
 *
 * @see  https://wordpress.org/plugins/astra-pro/
 *
 * @package Astra Sites
 * @since 2.3.8
 */

// If LearnDash is not defined then return false.
if ( ! defined( 'LEARNDASH_COURSE_GRID_VERSION' ) ) {
	return;
}

if ( ! class_exists( 'Astra_Sites_Compatibility_LearnDash' ) ) :

	/**
	 * Astra Sites Compatibility LearnDash
	 *
	 * @since 2.3.8
	 */
	class Astra_Sites_Compatibility_LearnDash {

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 2.3.8
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 2.3.8
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 2.3.8
		 */
		public function __construct() {
			add_filter( 'astra_sites_pre_process_post_disable_content', '__return_false' );
		}
	}

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

endif;