function top_searches_top_searches in Top Searches 7
Same name and namespace in other branches
- 6 top_searches.module \top_searches_top_searches()
Hook top_searches. Modules may use this hook to add their search queries. They can later theme the results, to alter the url of the search phrases, to point elsewhere than "search/node/*"
Parameters
$keys: Search phrases to be registered by top_searches.
1 call to top_searches_top_searches()
File
- ./
top_searches.module, line 132
Code
function top_searches_top_searches($keys = NULL) {
if (!is_string($keys)) {
return;
}
else {
top_searches_process_keys($keys);
}
}