Node::preDelete

public static Node::preDelete(EntityStorageInterface $storage, array $entities)

Acts on entities before they are deleted and before hooks are invoked.

Used before the entities are deleted and before invoking the delete hook.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

\Drupal\Core\Entity\EntityInterface[] $entities: An array of entities.

Overrides Entity::preDelete

File

core/modules/node/src/Entity/Node.php, line 151

Class

Node
Defines the node entity class.

Namespace

Drupal\node\Entity

Code

public static function preDelete(EntityStorageInterface $storage, array $entities) {
  parent::preDelete($storage, $entities);

  // Ensure that all nodes deleted are removed from the search index.
  if (\Drupal::moduleHandler()->moduleExists('search')) {
    foreach ($entities as $entity) {
      search_index_clear('node_search', $entity->nid->value);
    }
  }
}
doc_Drupal
2016-10-29 09:30:23
Comments
Leave a Comment

Please login to continue.