Returns the layout schema for list-type views (ViewList, ViewActivity).
Source
protected function get_list_layout_schema() {
return array(
'type' => 'object',
'properties' => array(
'density' => array(
'type' => 'string',
'enum' => array( 'compact', 'balanced', 'comfortable' ),
),
),
);
}
Changelog
| Version | Description |
|---|---|
| 7.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.