search_date_query_alter.module

Same filename and directory in other branches
  1. 9 core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.module
  2. 8.9.x core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.module
  3. 10 core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.module

Adds date conditions to node searches.

File

core/modules/search/tests/modules/search_date_query_alter/search_date_query_alter.module

View source
<?php


/**
 * @file
 * Adds date conditions to node searches.
 */
use Drupal\Core\Database\Query\AlterableInterface;

/**
 * Implements hook_query_TAG_alter().
 *
 * Tags search_$type with $type node_search.
 */
function search_date_query_alter_query_search_node_search_alter(AlterableInterface $query) {
    // Start date Sat, 19 Mar 2016 00:00:00 GMT.
    $query->condition('n.created', 1458345600, '>=');
    // End date Sun, 20 Mar 2016 00:00:00 GMT.
    $query->condition('n.created', 1458432000, '<');
}

Functions

Title Deprecated Summary
search_date_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.