golden hour
/home/phakp/public_html/wp/wp-content/themes/neve/inc/customizer/types
⬆️ Go Up
Upload
File/Folder
Size
Actions
control.php
1.35 KB
Del
OK
panel.php
595 B
Del
OK
partial.php
655 B
Del
OK
section.php
939 B
Del
OK
Edit: 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; } }
Save