function views_plugin_style_rss::option_definition
Same name in other branches
- 7.x-3.x plugins/views_plugin_style_rss.inc \views_plugin_style_rss::option_definition()
Overrides views_plugin_style::option_definition
File
-
plugins/
views_plugin_style_rss.inc, line 42
Class
- views_plugin_style_rss
- Default style plugin to render an RSS feed.
Code
function option_definition() {
$options = parent::option_definition();
$options['description'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['mission_description'] = array(
'default' => '',
'translatable' => TRUE,
);
return $options;
}