%PDF- %PDF-
Direktori : /var/www/projetos/spanish.ongrace.com/wp-content/themes/neve/inc/customizer/types/ |
Current File : //var/www/projetos/spanish.ongrace.com/wp-content/themes/neve/inc/customizer/types/partial.php |
<?php /** * Customizer partial type enforcing. * * @package Neve\Customizer\Types */ namespace Neve\Customizer\Types; /** * Class Partial * * @package Neve\Customizer\Types */ class Partial { /** * ID of control that will be attached to. Also ID of the partial itself. * * @var string the control ID. */ public $id; /** * Args for the partial. * * @var array args passed into partial. */ public $args = array(); /** * Constructor. * * @param string $id the control id. * @param array $args the partial args. */ public function __construct( $id, $args ) { $this->id = $id; $this->args = $args; } }