📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:11:10
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
kirki
/
customizer
/
packages
/
compatibility
/
src
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/kirki/customizer/packages/compatibility/src
🔄 Refresh
✏️
Editing: Framework.php
Writable
<?php /** * The main Kirki object * * @package Kirki * @category Core * @author Themeum * @copyright Copyright (c) 2023, Themeum * @license https://opensource.org/licenses/MIT * @since 1.0 */ namespace Kirki\Compatibility; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Singleton class */ final class Framework { public $modules; /** * Holds the one, true instance of this object. * * @static * @access protected * @var object */ protected static $instance = null; /** * Access the single instance of this class. * * @static * @access public * @return Kirki\Compatibility\Framework */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } }
💾 Save Changes
❌ Cancel