| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| 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.php 0000644 00000001067 15115045316 0030704 0 ustar 00 home <?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;
}
}