File "class-panel.php"

Full Path: /home/mahaadedsdfdfhfg/public_html/wp-content/themes/oceanwp/inc/customizer/extend-section/class-panel.php
File size: 563 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( class_exists( 'WP_Customize_Panel' ) ) {

	class OWP_Customize_Panel extends WP_Customize_Panel {

		public $panel;

		public $type = 'owp_panel';

		public function json() {

			$array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type', 'panel', ) );
			$array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
			$array['content'] = $this->get_content();
			$array['active'] = $this->active();
			$array['instanceNumber'] = $this->instance_number;

			return $array;

		}

	}

}