You are here

public function NodeType::id in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/Entity/NodeType.php \Drupal\node\Entity\NodeType::id()

Gets the identifier.

Return value

string|int|null The entity identifier, or NULL if the object does not yet have an identifier.

Overrides EntityBase::id

1 call to NodeType::id()
NodeType::postSave in core/modules/node/src/Entity/NodeType.php
Acts on a saved entity before the insert or update hook is invoked.

File

core/modules/node/src/Entity/NodeType.php, line 112

Class

NodeType
Defines the Node type configuration entity.

Namespace

Drupal\node\Entity

Code

public function id() {
  return $this->type;
}