1 search.module search_is_active()

Determines access for the ?q=search path.

File

core/modules/search/search.module, line 300
Enables site-wide keyword searching.

Code

function search_is_active() {
  // This path cannot be accessed if there are no active modules.
  return user_access('search content') && search_get_info();
}