function synonyms_search_entity_delete in Synonyms 8
Same name and namespace in other branches
- 2.0.x modules/synonyms_search/synonyms_search.module \synonyms_search_entity_delete()
Implements hook_entity_delete().
File
- synonyms_search/
synonyms_search.module, line 32 - Integrates Synonyms with core Search module.
Code
function synonyms_search_entity_delete(EntityInterface $entity) {
if ($entity instanceof ContentEntityInterface) {
\Drupal::service('synonyms.behavior.search')
->entityMarkForReindex($entity);
}
}