public function EntityReference::buildOptionsForm in Zircon Profile 8
Same name in this branch
- 8 core/modules/views/src/Plugin/views/style/EntityReference.php \Drupal\views\Plugin\views\style\EntityReference::buildOptionsForm()
- 8 core/modules/views/src/Plugin/views/row/EntityReference.php \Drupal\views\Plugin\views\row\EntityReference::buildOptionsForm()
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/row/EntityReference.php \Drupal\views\Plugin\views\row\EntityReference::buildOptionsForm()
Provide a form for setting options.
Overrides Fields::buildOptionsForm
File
- core/
modules/ views/ src/ Plugin/ views/ row/ EntityReference.php, line 41 - Contains \Drupal\views\Plugin\views\row\EntityReference.
Class
- EntityReference
- EntityReference row plugin.
Namespace
Drupal\views\Plugin\views\rowCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
// Expand the description of the 'Inline field' checkboxes.
$form['inline']['#description'] .= '<br />' . $this
->t("<strong>Note:</strong> In 'Entity Reference' displays, all fields will be displayed inline unless an explicit selection of inline fields is made here.");
}