function FieldConfigBase::getDefaultValue
Overrides FieldDefinitionInterface::getDefaultValue
File
-
core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php, line 425
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function getDefaultValue(FieldableEntityInterface $entity) {
// Allow custom default values function.
if ($callback = $this->getDefaultValueCallback()) {
$value = call_user_func($callback, $entity, $this);
$value = $this->normalizeValue($value, $this->getFieldStorageDefinition()
->getMainPropertyName());
}
else {
$value = $this->getDefaultValueLiteral();
}
// Allow the field type to process default values.
$field_item_list_class = $this->getClass();
return $field_item_list_class::processDefaultValue($value, $entity, $this);
}