class-kirki-panels-default-panel.php (517B)
1 <?php 2 /** 3 * The default panel. 4 * 5 * @package Kirki 6 * @subpackage Controls 7 * @copyright Copyright (c) 2016, Aristeides Stathopoulos 8 * @license http://opensource.org/licenses/https://opensource.org/licenses/MIT 9 * @since 2.2.0 10 */ 11 12 if ( ! class_exists( 'Kirki_Panels_Default_Panel' ) ) { 13 14 /** 15 * Default Panel. 16 */ 17 class Kirki_Panels_Default_Panel extends WP_Customize_Panel { 18 19 /** 20 * The panel type. 21 * 22 * @access public 23 * @var string 24 */ 25 public $type = 'kirki-default'; 26 27 } 28 }