public function Schema::getEntityTypeId in Schemata 8
Retrieve the Entity Type ID.
Return value
string The Entity Type ID
Overrides SchemaInterface::getEntityTypeId
1 call to Schema::getEntityTypeId()
- Schema::__construct in src/
Schema/ Schema.php - Creates a Schema object.
File
- src/
Schema/ Schema.php, line 106
Class
- Schema
- Schema class that describes a Drupal Entity or Entity Type.
Namespace
Drupal\schemata\SchemaCode
public function getEntityTypeId() {
return $this->entityType
->getEntityTypeId();
}