| Versions | |
|---|---|
| 4.7 – 5 | hook_search($op = 'search', $keys = null) |
| 6 | hook_search($op = 'search', $keys = NULL) |
Define a custom search routine.
This hook allows a module to perform searches on content it defines (custom node types, users, or comments, for example) when a site search is performed.
Note that you can use form API to extend the search. You will need to use hook_form_alter() to add any additional required form elements. You can process their values on submission using a custom validation function. You will need to merge any custom search values into the search keys using a key:value syntax. This allows all search queries to have a clean and permanent URL. See node_form_alter() for an example.
$op A string defining which operation to perform:
$keys The search keywords as entered by the user.
An array of search results. Each item in the result set array may contain whatever information the module wishes to display as a search result. To use the default search result display, each item should be an array which can have the following keys:
Only 'link' and 'title' are required, but it is advised to fill in as many of these fields as possible.
The example given here is for node.module, which uses the indexed search capabilities. To do this, node module also implements hook_update_index() which is used to create and maintain the index.
We call do_search() with the keys, the module name and extra SQL fragments to use when searching. See hook_update_index() for more information.
developer/
<?php
function hook_search($op = 'search', $keys = null) {
switch ($op) {
case 'name':
return t('content');
case 'reset':
variable_del('node_cron_last');
return;
case 'search':
$find = do_search($keys, 'node', 'INNER JOIN {node} n ON n.nid = i.sid ' . node_access_join_sql() . ' INNER JOIN {users} u ON n.uid = u.uid', 'n.status = 1 AND ' . node_access_where_sql());
$results = array();
foreach ($find as $item) {
$node = node_load(array('nid' => $item));
$extra = node_invoke_nodeapi($node, 'search result');
$results[] = array(
'link' => url('node/' . $item),
'type' => node_invoke($node, 'node_name'),
'title' => $node->title,
'user' => theme('username', $node),
'date' => $node->changed,
'extra' => $extra,
'snippet' => search_excerpt($keys, check_output($node->body, $node->format)),
);
}
return $results;
}
}
?>