Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
spathe
/
wp-content
/
themes
/
astrip
/
includes
/
theme-options
/
functions
:
theme-option-functions.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); }