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

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

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

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

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