Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldDefinition.php

function FieldDefinition::setDisplayConfigurable

Sets whether the display for the field can be configured.

Parameters

string $display_context: The display context. Either 'view' or 'form'.

bool $configurable: Whether the display options can be configured (e.g., via the "Manage display" / "Manage form display" UI screens). If TRUE, the options specified via getDisplayOptions() act as defaults.

Return value

$this

File

core/lib/Drupal/Core/Field/FieldDefinition.php, line 114

Class

FieldDefinition
A class for defining entity field definitions.

Namespace

Drupal\Core\Field

Code

public function setDisplayConfigurable($display_context, $configurable) {
    // If no explicit display options have been specified, default to 'hidden'.
    if (empty($this->definition['display'][$display_context])) {
        $this->definition['display'][$display_context]['options'] = [
            'region' => 'hidden',
        ];
    }
    $this->definition['display'][$display_context]['configurable'] = $configurable;
    return $this;
}
RSS feed
Powered by Drupal