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-partial.php.tar

www/wp-content/themes/hestia/inc/core/types/customizer/class-hestia-customizer-partial.php000064400000001221151146556210031236 0ustar00home/xbodynamge<?php
/**
 * Customizer partial type enforcing.
 *
 * @package Hestia
 */

/**
 * Class Hestia_Customizer_Partial
 */
class Hestia_Customizer_Partial {
	/**
	 * ID of control that will be attached to. Also ID of the partial itself.
	 *
	 * @var string the control ID.
	 */
	public $control_id;

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

	/**
	 * Hestia_Customizer_Partial constructor.
	 *
	 * @param string $control_id the control id.
	 * @param array  $args the partial args.
	 */
	public function __construct( $control_id, $args ) {
		$this->id   = $control_id;
		$this->args = $args;
	}
}