hook_ENTITY_TYPE_insert(Drupal\Core\Entity\EntityInterface $entity)
Respond to creation of a new entity of a particular type.
This hook runs once the entity has been stored. Note that hook implementations may not alter the stored entity data.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
See also
Related topics
- Entity CRUD, editing, and view hooks
- Hooks used in various entity operations.
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/lib/Drupal/Core/Entity/entity.api.php, line 966
- Hooks and documentation related to entities.
Code
1 2 3 4 5 6 7 8 9 10 | function hook_ENTITY_TYPE_insert(Drupal\Core\Entity\EntityInterface $entity ) { // Insert the new entity into a fictional table of this type of entity. db_insert( 'example_entity' ) ->fields( array ( 'id' => $entity ->id(), 'created' => REQUEST_TIME, 'updated' => REQUEST_TIME, )) ->execute(); } |
Please login to continue.