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.
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
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(); }
© 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!entity.api.php/function/hook_ENTITY_TYPE_insert/8.1.x