function BaseFieldDefinition::getPropertyDefinition

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::getPropertyDefinition()

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 575

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function getPropertyDefinition($name) {
  if (!isset($this->propertyDefinitions)) {
    $this->getPropertyDefinitions();
  }
  if (isset($this->propertyDefinitions[$name])) {
    return $this->propertyDefinitions[$name];
  }
}

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