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