public function EntityDataDefinition::setEntityTypeId

public EntityDataDefinition::setEntityTypeId($entity_type_id)

Sets the entity type ID.

Parameters

string $entity_type_id: The entity type to set.

Return value

$this

Overrides EntityDataDefinitionInterface::setEntityTypeId

File

core/lib/Drupal/Core/Entity/TypedData/EntityDataDefinition.php, line 109

Class

EntityDataDefinition
A typed data definition class for describing entities.

Namespace

Drupal\Core\Entity\TypedData

Code

public function setEntityTypeId($entity_type_id) {
  return $this->addConstraint('EntityType', $entity_type_id);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!TypedData!EntityDataDefinition.php/function/EntityDataDefinition::setEntityTypeId/8.1.x