function spaces_handler_field_node::option_definition in Spaces 7
Same name and namespace in other branches
- 6.3 includes/spaces_handler_field_node.inc \spaces_handler_field_node::option_definition()
- 7.3 includes/spaces_handler_field_node.inc \spaces_handler_field_node::option_definition()
Override of option_definition().
Overrides views_handler_field_node::option_definition
File
- includes/
spaces_handler_field_node.inc, line 7
Class
Code
function option_definition() {
$options = parent::option_definition();
$options['spaces'] = array(
'default' => array(
'type' => NULL,
'frontpage' => FALSE,
),
);
return $options;
}