You are here

function editableviews_plugin_style_row_edit_table::options_form in Editable Views 7

The options form for the given style.

Overrides views_plugin_style_table::options_form

File

./editableviews_plugin_style_row_edit_table.inc, line 36

Class

editableviews_plugin_style_row_edit_table
Plugin class for the Editable Table style.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);

  // Everything we add to the options form is common and thus in the helper.
  $this->helper
    ->options_form($form, $form_state);
}