protected 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 151
Class
- EntityViewDisplayEditForm
- Edit form for the EntityViewDisplay entity type.
Namespace
Drupal\field_ui\Form
Code
1 2 3 4 5 6 7 8 | protected function getFieldLabelOptions() { return array ( 'above' => $this ->t( 'Above' ), 'inline' => $this ->t( 'Inline' ), 'hidden' => '- ' . $this ->t( 'Hidden' ) . ' -' , 'visually_hidden' => '- ' . $this ->t( 'Visually Hidden' ) . ' -' , ); } |
Please login to continue.