function views_plugin_style_rss::options_form

Overrides views_plugin_style::options_form

File

plugins/views_plugin_style_rss.inc, line 62

Class

views_plugin_style_rss
Default style plugin to render an RSS feed.

Code

public function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['description'] = array(
        '#type' => 'textfield',
        '#title' => t('RSS description'),
        '#default_value' => $this->options['description'],
        '#description' => t('This will appear in the RSS feed itself.'),
        '#maxlength' => 1024,
    );
}