function EntityViewDisplayEditForm::getFieldLabelOptions

Returns an array of visibility options for field labels.

Return value

array An array of visibility options.

File

core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php, line 156

Class

EntityViewDisplayEditForm
Edit form for the EntityViewDisplay entity type.

Namespace

Drupal\field_ui\Form

Code

protected function getFieldLabelOptions() {
  return [
    'above' => $this->t('Above'),
    'inline' => $this->t('Inline'),
    'hidden' => '- ' . $this->t('Hidden') . ' -',
    'visually_hidden' => '- ' . $this->t('Visually Hidden') . ' -',
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.