File "theme-option-functions.php"

Full Path: /home/peaktdwu/aaronacebhutan.com/wp-content/themes/astrip/includes/theme-options/functions/theme-option-functions.php
File size: 818 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if ( !class_exists( 'EGNS_THEME_OPTIONS_Functions' ) ) {
	class EGNS_THEME_OPTIONS_Functions {
		/**
		 * This The Instance of this class.
		 *
		 * @since   1.3.0
		 * @access  public
		 * @var     Theme_Options_Functions
		 */
		public static $instance;

		/**
		 * Provides access to a single instance of a module using the singleton pattern.
		 *
		 * @since   1.3.0
		 * @return   object
		 */
		public static function get_instance() {
			if (self::$instance === null) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since    1.3.0
		 */
		public function __construct() {
			$this->actions();
		}

		/**
		 * Add actions.
		 *
		 * @since    1.3.0
		 */
		public function actions() {

		}

		

	}

	EGNS_THEME_OPTIONS_Functions::get_instance();
}