You are here

function node_scanner_query_alter in Search and Replace Scanner 7

Implements hook_scanner_query_alter().

File

./scanner.module, line 1395
Search and Replace Scanner - works on all nodes text content.

Code

function node_scanner_query_alter(&$query, $map, $table, $field) {

  // Performed on behalf of node.module.
  $query
    ->condition('n.status', '1', '=');
}