You are here

public function FieldStorageConfig::getTypeProvider in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::getTypeProvider()

Returns the name of the module providing the field type.

Return value

string The name of the module that provides the field type.

Overrides FieldStorageConfigInterface::getTypeProvider

1 call to FieldStorageConfig::getTypeProvider()
FieldStorageConfig::calculateDependencies in core/modules/field/src/Entity/FieldStorageConfig.php
Calculates dependencies and stores them in the dependency property.

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 524

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public function getTypeProvider() {
  return $this->module;
}