Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-hestia-customizer-section.php.tar

www/wp-content/themes/hestia/inc/core/types/customizer/class-hestia-customizer-section.php000064400000001565151150144160031251 0ustar00home/xbodynamge<?php
/**
 * Customizer Section type Enforcing.
 *
 * @package Hestia
 */

/**
 * Class Hestia_Customizer_Section
 */
class Hestia_Customizer_Section {
	/**
	 * ID of section
	 *
	 * @var string the control ID.
	 */
	public $id;

	/**
	 * Args for section instance.
	 *
	 * @var array args passed into section.
	 */
	public $args = array();

	/**
	 * Custom section ( string of class name | null)
	 *
	 * @var null|string
	 */
	public $custom_section = null;

	/**
	 * Hestia_Customizer_Section constructor.
	 *
	 * @param string $id the control id.
	 * @param array  $args the add_section array.
	 * @param string $custom_section [optional] this should be added if the section is a custom section.
	 */
	public function __construct( $id, $args, $custom_section = null ) {
		$this->id             = $id;
		$this->args           = $args;
		$this->custom_section = $custom_section;
	}
}