You are here

public function references_plugin_row_fields::options_form in References 7.2

Provide a form for setting options.

@codingStandardsIgnoreStart

Overrides views_plugin_row_fields::options_form

File

views/references_plugin_row_fields.inc, line 32
Handler for references_plugin_row_fields.

Class

references_plugin_row_fields
Default class for plugin row fields.

Code

public function options_form(&$form, &$form_state) {

  // @codingStandardsIgnoreEnd
  parent::options_form($form, $form_state);

  // Expand the description of the 'Inline field' checkboxes.
  $form['inline']['#description'] .= '<br>' . t("<strong>Note:</strong> In 'References' displays, all fields will be displayed inline unless an explicit selection of inline fields is made here.");
}