%PDF- %PDF-
| Direktori : /var/www/projetos/french.ongrace.com/wp-content/themes/neve/inc/customizer/types/ |
| Current File : /var/www/projetos/french.ongrace.com/wp-content/themes/neve/inc/customizer/types/panel.php |
<?php
/**
* Customizer panel type enforcement
*
* @package Neve\Customizer\Types
*/
namespace Neve\Customizer\Types;
/**
* Class Panel
*
* @package Neve\Customizer\Types
*/
class 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();
/**
* Constructor.
*
* @param string $id the control id.
* @param array $args the panel args.
*/
public function __construct( $id, $args ) {
$this->id = $id;
$this->args = $args;
}
}