Astra_Update_Sidebar_Width::get_input_schema()
Get input schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/general/sidebar/class-astra-update-sidebar-width.php
public function get_input_schema() {
return array(
'type' => 'object',
'properties' => array(
'width' => array(
'type' => 'integer',
'description' => 'Sidebar width in percentage (15-50).',
'minimum' => 15,
'maximum' => 50,
),
),
'required' => array( 'width' ),
);
}
Expand full source code Collapse full source code View on Trac