public BaseFieldDefinition::setDisplayConfigurable($display_context, $configurable)
Sets whether the display for the field can be configured.
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.
static The object itself for chaining.
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'] = array('type' => 'hidden'); } $this->definition['display'][$display_context]['configurable'] = $configurable; return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Field!BaseFieldDefinition.php/function/BaseFieldDefinition::setDisplayConfigurable/8.1.x