HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/themes/mesmerize/customizer/kirki/includes/class-kirki.php
<?php
/**
 * The Kirki API class.
 * Takes care of adding panels, sections & fields to the customizer.
 * For documentation please see https://github.com/aristath/kirki/wiki
 *
 * @package     Kirki
 * @category    Core
 * @author      Aristeides Stathopoulos
 * @copyright   Copyright (c) 2016, Aristeides Stathopoulos
 * @license     http://opensource.org/licenses/https://opensource.org/licenses/MIT
 * @since       1.0
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Kirki' ) ) {

	/**
	 * This class acts as an interface.
	 * Developers may use this object to add configurations, fields, panels and sections.
	 * You can also access all available configurations, fields, panels and sections
	 * by accessing the object's static properties.
	 */
	class Kirki extends Kirki_Init {

		/**
		 * Absolute path to the Kirki folder.
		 *
		 * @static
		 * @access public
		 * @var string
		 */
		public static $path;

		/**
		 * URL to the Kirki folder.
		 *
		 * @static
		 * @access public
		 * @var string
		 */
		public static $url;

		/**
		 * An array containing all configurations.
		 *
		 * @static
		 * @access public
		 * @var array
		 */
		public static $config = array();

		/**
		 * An array containing all fields.
		 *
		 * @static
		 * @access public
		 * @var array
		 */
		public static $fields = array();

		/**
		 * An array containing all panels.
		 *
		 * @static
		 * @access public
		 * @var array
		 */
		public static $panels = array();

		/**
		 * An array containing all sections.
		 *
		 * @static
		 * @access public
		 * @var array
		 */
		public static $sections = array();

		/**
		 * Get the value of an option from the db.
		 *
		 * @static
		 * @access public
		 *
		 * @param string $config_id The ID of the configuration corresponding to this field.
		 * @param string $field_id The field_id (defined as 'settings' in the field arguments).
		 *
		 * @return mixed The saved value of the field.
		 */
		public static function get_option( $config_id = '', $field_id = '' ) {

			return Kirki_Values::get_value( $config_id, $field_id );

		}



		/**
		 * Sets the configuration options.
		 *
		 * @static
		 * @access public
		 *
		 * @param string $config_id The configuration ID.
		 * @param array $args The configuration options.
		 */
		public static function add_config( $config_id, $args = array() ) {

			$config                             = Kirki_Config::get_instance( $config_id, $args );
			$config_args                        = $config->get_config();
			self::$config[ $config_args['id'] ] = $config_args;

		}

		/**
		 * Create a new panel.
		 *
		 * @static
		 * @access public
		 *
		 * @param string $id The ID for this panel.
		 * @param array $args The panel arguments.
		 */
		public static function add_panel( $id = '', $args = array() ) {

			$args['id']          = esc_attr( $id );
			$args['description'] = ( isset( $args['description'] ) ) ? esc_textarea( $args['description'] ) : '';
			$args['priority']    = ( isset( $args['priority'] ) ) ? esc_attr( $args['priority'] ) : 10;
			$args['type']        = ( isset( $args['type'] ) ) ? $args['type'] : 'default';
			$args['type']        = 'kirki-' . $args['type'];
			if ( ! isset( $args['active_callback'] ) ) {
				$args['active_callback'] = ( isset( $args['required'] ) ) ? array(
					'Kirki_Active_Callback',
					'evaluate'
				) : '__return_true';
			}

			self::$panels[ $args['id'] ] = $args;

		}

		/**
		 * Create a new section.
		 *
		 * @static
		 * @access public
		 *
		 * @param string $id The ID for this section.
		 * @param array $args The section arguments.
		 */
		public static function add_section( $id, $args ) {

			$args['id']          = esc_attr( $id );
			$args['panel']       = ( isset( $args['panel'] ) ) ? esc_attr( $args['panel'] ) : '';
			$args['description'] = ( isset( $args['description'] ) ) ? esc_textarea( $args['description'] ) : '';
			$args['priority']    = ( isset( $args['priority'] ) ) ? esc_attr( $args['priority'] ) : 10;
			$args['type']        = ( isset( $args['type'] ) ) ? $args['type'] : 'default';
			$args['type']        = 'kirki-' . $args['type'];
			if ( ! isset( $args['active_callback'] ) ) {
				$args['active_callback'] = ( isset( $args['required'] ) ) ? array(
					'Kirki_Active_Callback',
					'evaluate'
				) : '__return_true';
			}

			self::$sections[ $args['id'] ] = $args;

		}

		/**
		 * Create a new field.
		 *
		 * @static
		 * @access public
		 *
		 * @param string $config_id The configuration ID for this field.
		 * @param array $args The field arguments.
		 */
		public static function add_field( $config_id, $args ) {

			if ( ! static::should_run() ) {
				return;
			}


			if ( isset( $args['type'] ) ) {
				$str       = str_replace( array( '-', '_' ), ' ', $args['type'] );
				$classname = 'Kirki_Field_' . str_replace( ' ', '_', ucwords( $str ) );
				if ( class_exists( $classname ) ) {
					new $classname( $config_id, $args );

					return;
				}
			}

			new Kirki_Field( $config_id, $args );

		}
	}
}