Astra_Get_Single_Page::get_output_schema()
Get output schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/posttypes/blog/class-astra-get-single-page.php
public function get_output_schema() {
return $this->build_output_schema(
array(
'container_layout' => array(
'type' => 'string',
'description' => __( 'Current container layout key.', 'astra' ),
),
'container_layout_label' => array(
'type' => 'string',
'description' => __( 'Human-readable container layout name.', 'astra' ),
),
'container_style' => array(
'type' => 'string',
'description' => __( 'Current container style key.', 'astra' ),
),
'container_style_label' => array(
'type' => 'string',
'description' => __( 'Human-readable container style name.', 'astra' ),
),
'sidebar_layout' => array(
'type' => 'string',
'description' => __( 'Current sidebar layout key.', 'astra' ),
),
'sidebar_layout_label' => array(
'type' => 'string',
'description' => __( 'Human-readable sidebar layout name.', 'astra' ),
),
'sidebar_style' => array(
'type' => 'string',
'description' => __( 'Current sidebar style key.', 'astra' ),
),
'sidebar_style_label' => array(
'type' => 'string',
'description' => __( 'Human-readable sidebar style name.', 'astra' ),
),
'content_width' => array(
'type' => 'string',
'description' => __( 'Content width setting key.', 'astra' ),
),
'content_width_label' => array(
'type' => 'string',
'description' => __( 'Human-readable content width name.', 'astra' ),
),
'content_max_width' => array(
'type' => 'integer',
'description' => __( 'Custom content max width in pixels.', 'astra' ),
),
'available_container_layouts' => array(
'type' => 'object',
'description' => __( 'Available container layout options.', 'astra' ),
),
'available_container_styles' => array(
'type' => 'object',
'description' => __( 'Available container style options.', 'astra' ),
),
'available_sidebar_layouts' => array(
'type' => 'object',
'description' => __( 'Available sidebar layout options.', 'astra' ),
),
'available_sidebar_styles' => array(
'type' => 'object',
'description' => __( 'Available sidebar style options.', 'astra' ),
),
)
);
}
Expand full source code Collapse full source code View on Trac