You are here

function search_query_alter_query_search_node_search_alter in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/search/tests/modules/search_query_alter/search_query_alter.module \search_query_alter_query_search_node_search_alter()

Implements hook_query_TAG_alter(): tag search_$type with $type node_search.

File

core/modules/search/tests/modules/search_query_alter/search_query_alter.module, line 13
Test module that alters search queries.

Code

function search_query_alter_query_search_node_search_alter(AlterableInterface $query) {

  // For testing purposes, restrict the query to node type 'article' only.
  $query
    ->condition('n.type', 'article');
}