Skip to content
Snippets Groups Projects
Commit 4b30303e authored by Tim Rohaly's avatar Tim Rohaly
Browse files

Issue #2008090 by joachim: hook_ENTITY_TYPE_defaults_rebuild() is not documented

parent c591a12d
No related branches found
No related tags found
No related merge requests found
......@@ -462,6 +462,24 @@ function hook_entity_views_field_handlers_alter(array &$field_handlers) {
$field_handlers['node'] = 'example_node_handler';
}
/**
* Act after default entities have been rebuilt.
*
* This hook is invoked after default entities have been fully saved to the
* database, but with the lock still active.
*
* @param array $entities
* An array of the entities that have been saved, keyed by name.
* @param array $originals
* An array of the original copies of the entities that have been saved,
* keyed by name.
*
* @see _entity_defaults_rebuild()
*/
function hook_ENTITY_TYPE_defaults_rebuild($entities, $originals) {
}
/**
* @} End of "addtogroup hooks".
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment