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-settings.php
<?php
/**
 * Handles sections created via the Kirki API.
 *
 * @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
 */

if ( ! class_exists( 'Kirki_Settings' ) ) {

	/**
	 * Each setting is a separate instance
	 */
	class Kirki_Settings {

		/**
		 * TYhe global $wp_customize object.
		 *
		 * @access protected
		 * @var WP_Customize_Manager
		 */
		protected $wp_customize;

		/**
		 * The setting-stypes we're using.
		 *
		 * @access protected
		 * @var array
		 */
		protected $setting_types = array();

		/**
		 * Creates a new Kirki_Settings object.
		 * Class constructor.
		 *
		 * @access public
		 * @param array $args The field definition as sanitized in Kirki_Field.
		 */
		public function __construct( $args = array() ) {

			// Set the $wp_customize property.
			global $wp_customize;
			if ( ! $wp_customize ) {
				return;
			}
			$this->wp_customize = $wp_customize;

			// Set the setting_types.
			$this->set_setting_types();
			// Add the settings.
			$this->add_settings( $args );

		}

		/**
		 * Adds the settings for this field.
		 * If settings are defined as an array, then it goes through them
		 * and calls the add_setting method.
		 * If not an array, then it just calls add_setting
		 *
		 * @access private
		 * @param array $args The field definition as sanitized in Kirki_Field.
		 */
		private function add_settings( $args = array() ) {

			// Get the classname we'll be using to create our setting(s).
			if ( ! isset( $args['type'] ) || ! array_key_exists( $args['type'], $this->setting_types ) ) {
				$args['type'] = 'default';
			}
			$classname = $this->setting_types[ $args['type'] ];

			// If settings are defined as an array, then we need to go through them
			// and call add_setting for each one of them separately.
			if ( isset( $args['settings'] ) && is_array( $args['settings'] ) ) {

				// Make sure defaults have been defined.
				if ( ! isset( $args['default'] ) || ! is_array( $args['default'] ) ) {
					$args['default'] = array();
				}
				foreach ( $args['settings'] as $key => $value ) {
					$default   = ( isset( $defaults[ $key ] ) ) ? $defaults[ $key ] : '';
					$this->add_setting( $classname, $value, $default, $args['option_type'], $args['capability'], $args['transport'], $args['sanitize_callback'] );
				}
			}
			$this->add_setting( $classname, $args['settings'], $args['default'], $args['option_type'], $args['capability'], $args['transport'], $args['sanitize_callback'] );
		}

		/**
		 * This is where we're finally adding the setting to the Customizer.
		 *
		 * @access private
		 * @param string       $classname           The name of the class that will be used to create this setting.
		 *                                          We're getting this from $this->setting_types.
		 * @param string       $setting             The setting-name.
		 *                                          If settings is an array, then this method is called per-setting.
		 * @param string|array $default             Default value for this setting.
		 * @param string       $type                The data type we're using. Valid options: theme_mod|option.
		 * @param string       $capability          @see https://codex.wordpress.org/Roles_and_Capabilities.
		 * @param string       $transport           Use refresh|postMessage.
		 * @param string|array $sanitize_callback   A callable sanitization function or method.
		 */
		private function add_setting( $classname, $setting, $default, $type, $capability, $transport, $sanitize_callback ) {

			$this->wp_customize->add_setting( new $classname( $this->wp_customize, $setting, array(
				'default'           => $default,
				'type'              => $type,
				'capability'        => $capability,
				'transport'         => $transport,
				'sanitize_callback' => $sanitize_callback,
			) ) );

		}

		/**
		 * Sets the $this->setting_types property.
		 * Makes sure the kirki/setting_types filter is applied
		 * and that the defined classes actually exist.
		 * If a defined class does not exist, it is removed.
		 */
		private function set_setting_types() {

			// Apply the kirki/setting_types filter.
			$this->setting_types = apply_filters( 'kirki/setting_types', array(
				'default'  => 'Kirki_Settings_Default_Setting',
				'repeater' => 'Kirki_Settings_Repeater_Setting',
			) );

			// Make sure the defined classes actually exist.
			foreach ( $this->setting_types as $key => $classname ) {

				if ( ! class_exists( $classname ) ) {
					unset( $this->setting_types[ $key ] );
				}
			}
		}
	}
}