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