You are here

function views_plugin_row_heartbeat_view::options_form in Heartbeat 6.3

Same name and namespace in other branches
  1. 7 views/views_plugin_row_heartbeat_view.inc \views_plugin_row_heartbeat_view::options_form()

File

views/plugins/views_plugin_row_heartbeat_view.inc, line 58
Contains the heartbeat row style plugin.

Class

views_plugin_row_heartbeat_view
Plugin which performs a heartbeat_view on the resulting object.

Code

function options_form(&$form, &$form_state) {
  $form['messages'] = array(
    '#type' => 'checkbox',
    '#title' => t('Display messages'),
    '#default_value' => $this->options['messages'],
  );
}