You are here

function views_plugin_row_heartbeat_view::option_definition 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::option_definition()

File

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

Class

views_plugin_row_heartbeat_view
Plugin which performs a heartbeat_view on the resulting object.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['messages'] = array(
    'default' => TRUE,
  );
  return $options;
}