You are here

function custom_search_filter_array in Custom Search 7

Same name and namespace in other branches
  1. 6 custom_search.module \custom_search_filter_array()

Function used to filter node_type array to only filter those that are configured in Custom Search Form.

1 string reference to 'custom_search_filter_array'
custom_search_preprocess_search_results in theme/custom_search.pages.inc

File

./custom_search.module, line 738
Bring customizations to the default search box

Code

function custom_search_filter_array($value = FALSE) {
  return $value !== 0;
}