Astra_Update_Sidebar_Style::get_input_schema()
Get input schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/general/sidebar/class-astra-update-sidebar-style.php
public function get_input_schema() {
return array(
'type' => 'object',
'properties' => array(
'style' => array(
'type' => 'string',
'description' => 'Sidebar style. Options: "unboxed" (Unboxed), "boxed" (Boxed).',
'enum' => array( 'unboxed', 'boxed' ),
),
),
'required' => array( 'style' ),
);
}
Expand full source code Collapse full source code View on Trac