1 entityreference_plugin_row_fields.inc entityreference_plugin_row_fields::options_form(&$form, &$form_state)

Provide a form for setting options.

Overrides views_plugin_row_fields::options_form

File

core/modules/entityreference/views/entityreference_plugin_row_fields.inc, line 20
Handler for entityreference_plugin_row_fields.

Class

entityreference_plugin_row_fields
@file Handler for entityreference_plugin_row_fields.

Code

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

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