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

Breadcrumb

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

function BaseFieldDefinition::getPropertyDefinitions

Overrides FieldStorageDefinitionInterface::getPropertyDefinitions

2 calls to BaseFieldDefinition::getPropertyDefinitions()
BaseFieldDefinition::getPropertyDefinition in core/lib/Drupal/Core/Field/BaseFieldDefinition.php
Gets the definition of a contained property.
BaseFieldDefinition::getPropertyNames in core/lib/Drupal/Core/Field/BaseFieldDefinition.php
Returns the names of the field's subproperties.

File

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

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function getPropertyDefinitions() {
    if (!isset($this->propertyDefinitions)) {
        $class = $this->getItemDefinition()
            ->getClass();
        $this->propertyDefinitions = $class::propertyDefinitions($this);
    }
    return $this->propertyDefinitions;
}
RSS feed
Powered by Drupal