function BaseFieldDefinition::getProvider

Returns the name of the provider of this field.

Return value

string The provider name; e.g., the module name.

Overrides FieldStorageDefinitionInterface::getProvider

File

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

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function getProvider() {
  return isset($this->definition['provider']) ? $this->definition['provider'] : NULL;
}

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