You are here

function views_plugin_row_heartbeat_rss::options_form in Heartbeat 7

Provide a form for setting options.

Overrides views_plugin_row::options_form

File

views/views_plugin_row_heartbeat_rss.inc, line 37
Contains the heartbeat activity view row style plugin.

Class

views_plugin_row_heartbeat_rss
Plugin which performs a heartbeat_activity_view on the resulting object.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['item_length'] = array(
    '#type' => 'select',
    '#title' => t('Display type'),
    '#options' => $this
      ->options_form_summary_options(),
    '#default_value' => $this->options['item_length'],
  );
}