public BaseFieldDefinition::getType()
Returns the field type.
Return value
string The field type, i.e. the id of a field type plugin. For example 'text'.
Overrides FieldDefinitionInterface::getType
See also
\Drupal\Core\Field\FieldTypePluginManagerInterface
File
- core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 132
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\Field
Code
1 2 3 | public function getType () { return $this ->type; } |
Please login to continue.