Astra_Ext_Advanced_Footer


Description


Source

File: addons/advanced-footer/class-astra-ext-advanced-footer.php

	class Astra_Ext_Advanced_Footer {

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

		/**
		 *  Initiator
		 *
		 * @return object
		 */
		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 ( true === astra_addon_builder_helper()->is_header_footer_builder_active ) {
				return;
			}

			require_once ASTRA_EXT_ADVANCED_FOOTER_DIR . 'classes/class-astra-ext-adv-footer-loader.php';
			require_once ASTRA_EXT_ADVANCED_FOOTER_DIR . 'classes/class-astra-ext-adv-footer-markup.php';

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

		}
	}

Methods


User Contributed Notes

You must log in before being able to contribute a note or feedback.