function semanticviews_plugin_row_fields::option_definition in Semantic Views 7
Same name and namespace in other branches
- 6 semanticviews_plugin_row_fields.inc \semanticviews_plugin_row_fields::option_definition()
Set default options.
Overrides views_plugin_row::option_definition
File
- ./
semanticviews_plugin_row_fields.inc, line 19 - Contains the semantic row style plugin.
Class
- semanticviews_plugin_row_fields
- The semantic 'fields' row plugin
Code
function option_definition() {
$options = parent::option_definition();
$options['skip_blank'] = array(
'default' => FALSE,
);
// Field element_type and classes cannot be defined in the options
// definition because the field handlers are not attached when the option
// defaults are set up in the object's init() method.
$options['semantic_html'] = array(
'default' => array(),
);
return $options;
}