On this page
function search_data
search_data($keys, $module, $conditions = NULL)
Performs a search by calling hook_search_execute().
Parameters
$keys: Keyword query to search on.
$module: Search module to search.
$conditions: Optional array of additional search conditions.
Return value
Renderable array of search results. No return value if $keys are not supplied or if the given search module is not active.
Related topics
File
- modules/search/search.module, line 1098
- Enables site-wide keyword searching.
Code
function search_data($keys, $module, $conditions = NULL) {
if (module_hook($module, 'search_execute')) {
$results = module_invoke($module, 'search_execute', $keys, $conditions);
if (module_hook($module, 'search_page')) {
return module_invoke($module, 'search_page', $results);
}
else {
return array(
'#theme' => 'search_results',
'#results' => $results,
'#module' => $module,
);
}
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!search!search.module/function/search_data/7.x