You are here

function editableviews_plugin_style_row_edit_table::init in Editable Views 7

Initialize a style plugin.

Overrides views_plugin_style::init

File

./editableviews_plugin_style_row_edit_table.inc, line 11

Class

editableviews_plugin_style_row_edit_table
Plugin class for the Editable Table style.

Code

function init(&$view, &$display, $options = NULL) {
  parent::init($view, $display, $options);

  // Get the helper object. This abstracts out a number of things we do here,
  // in order that other style plugins can use them too.
  $this->helper = new editableviews_style_helper($this);
}