You are here

function social_search_search_api_views_handler_mapping_alter in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  2. 8.6 modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  3. 8.7 modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  4. 10.3.x modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  5. 10.0.x modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  6. 10.1.x modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()
  7. 10.2.x modules/social_features/social_search/social_search.module \social_search_search_api_views_handler_mapping_alter()

Implements hook_search_api_views_handler_mapping_alter().

File

modules/social_features/social_search/social_search.module, line 202
The Social search module.

Code

function social_search_search_api_views_handler_mapping_alter(array &$mapping) {

  // Override the Search API views filter connected to date with
  // SocialDate.php (Extends current one limits options).
  $mapping['date']['filter']['id'] = 'social_date_filter';
}