You are here

function editableviews_plugin_style_row_edit_table::query in Editable Views 7

Add anything to the query that we might need to.

Overrides views_plugin_style::query

File

./editableviews_plugin_style_row_edit_table.inc, line 83

Class

editableviews_plugin_style_row_edit_table
Plugin class for the Editable Table style.

Code

function query() {
  parent::query();

  // Everything we do to the query is common and thus in the helper.
  $this->helper
    ->query();
}