PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
themes
/
flatsome
/
inc
/
admin
/
kirki
/
core
<?php /** * The main Kirki object * * @package Kirki * @category Core * @author Ari Stathopoulos (@aristath) * @copyright Copyright (c) 2020, David Vongries * @license https://opensource.org/licenses/MIT * @since 1.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Singleton class */ final class Kirki_Toolkit { /** * Modules object. * * @var object */ 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 object Kirki_Toolkit. */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } }
[-] class-kirki-setting-site-option.php
[edit]
[-] class-kirki-helper.php
[edit]
[-] class-kirki-values.php
[edit]
[-] class-kirki-l10n.php
[edit]
[-] class-kirki.php
[edit]
[-] class-kirki-toolkit.php
[edit]
[-] class-kirki-util.php
[edit]
[-] class-kirki-init.php
[edit]
[-] class-kirki-field.php
[edit]
[-] class-kirki-control.php
[edit]
[-] class-kirki-sections.php
[edit]
[-] class-kirki-sanitize-values.php
[edit]
[-] class-kirki-setting-user-meta.php
[edit]
[-] class-kirki-modules.php
[edit]
[+]
..
[-] class-kirki-config.php
[edit]
[-] class-kirki-section.php
[edit]
[-] class-kirki-panel.php
[edit]
[-] class-kirki-settings.php
[edit]