File "class-wp-customize-sidebar-section.php"

Full path: /home/kosmetik/public_html/wp-includes/customize/class-wp-customize-sidebar-section.php
File size: 399 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

class WP_Customize_Sidebar_Section extends WP_Customize_Section
{
    public $type = 'sidebar';
    public $sidebar_id;
    public function json()
    {
        $json = parent::json();
        $json['sidebarId'] = $this->sidebar_id;
        return $json;
    }
    public function active_callback()
    {
        return $this->manager->widgets->is_sidebar_rendered($this->sidebar_id);
    }
}