function search_node_update

Implements hook_node_update().

File

drupal/core/modules/search/search.module, line 805
Enables site-wide keyword searching.

Code

function search_node_update(EntityInterface $node) {

  // Reindex the node when it is updated. The node is automatically indexed
  // when it is added, simply by being added to the node table.
  search_touch_node($node->nid);
}