wp/wp-includes/customize/class-wp-customize-sidebar-section.php
changeset 9 177826044cd9
parent 7 cf61fcea0001
equal deleted inserted replaced
8:c7c34916027a 9:177826044cd9
    38 	 * @since 4.1.0
    38 	 * @since 4.1.0
    39 	 *
    39 	 *
    40 	 * @return array The array to be exported to the client as JSON.
    40 	 * @return array The array to be exported to the client as JSON.
    41 	 */
    41 	 */
    42 	public function json() {
    42 	public function json() {
    43 		$json = parent::json();
    43 		$json              = parent::json();
    44 		$json['sidebarId'] = $this->sidebar_id;
    44 		$json['sidebarId'] = $this->sidebar_id;
    45 		return $json;
    45 		return $json;
    46 	}
    46 	}
    47 
    47 
    48 	/**
    48 	/**