Closed (fixed)
Project:
Hook Event Dispatcher
Version:
3.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
5 Oct 2021 at 17:02 UTC
Updated:
20 Oct 2021 at 05:19 UTC
Jump to comment: Most recent
Based on Path aliases have been converted to revisionable entities:
hook_path_insert($path)
hook_path_update($path)
hook_path_delete($path)
Are converted to
hook_entity_insert(Drupal\Core\Entity\EntityInterface $entity)
hook_path_alias_insert(Drupal\path_alias\PathAliasInterface $path_alias)
hook_entity_update(Drupal\Core\Entity\EntityInterface $entity)
hook_path_alias_update(Drupal\path_alias\PathAliasInterface $path_alias)
hook_entity_delete(Drupal\Core\Entity\EntityInterface $entity)
hook_path_alias_delete(Drupal\path_alias\PathAliasInterface $path_alias)Convert deprecated hook implementations to hook_ENTITY_TYPE_.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
el7cosmosComment #3
el7cosmosComment #6
el7cosmos