function FieldDefinition::getDefaultValue

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::getDefaultValue()
  2. 8.9.x core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::getDefaultValue()
  3. 10 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::getDefaultValue()

Overrides FieldDefinitionInterface::getDefaultValue

File

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

Class

FieldDefinition
A class for defining entity field definitions.

Namespace

Drupal\Core\Field

Code

public function getDefaultValue(FieldableEntityInterface $entity) {
    // Allow custom default values function.
    if ($callback = $this->getDefaultValueCallback()) {
        $value = call_user_func($callback, $entity, $this);
    }
    else {
        $value = $this->getDefaultValueLiteral();
    }
    $value = $this->normalizeValue($value, $this->getFieldStorageDefinition()
        ->getMainPropertyName());
    // Allow the field type to process default values.
    $field_item_list_class = $this->getClass();
    return $field_item_list_class::processDefaultValue($value, $entity, $this);
}

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