Astra_Toggle_Underline_Links::get_input_schema()
Get input schema.
Description
Return
(array)
Source
File: inc/abilities/customizer/globals/typography/class-astra-toggle-underline-links.php
public function get_input_schema() {
return array(
'type' => 'object',
'properties' => array(
'enabled' => array(
'type' => 'boolean',
'description' => 'Whether to enable link underlines',
),
),
'required' => array( 'enabled' ),
);
}
Expand full source code Collapse full source code View on Trac