search_query_alter.module
Test module that alters search queries.
File
- 
              core/modules/ search/ tests/ modules/ search_query_alter/ search_query_alter.module 
View source
<?php
/**
 * @file
 * Test module that alters search queries.
 */
use Drupal\Core\Database\Query\AlterableInterface;
/**
 * Implements hook_query_TAG_alter().
 *
 * Tags search_$type with $type node_search.
 */
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');
}Functions
| Title | Deprecated | Summary | 
|---|---|---|
| search_query_alter_query_search_node_search_alter | Implements hook_query_TAG_alter(). | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
