function search_api_spellcheck_views_api in Search API Spellcheck 7
Implements hook_views_api().
File
- ./
search_api_spellcheck.module, line 42 - A common interface for search services to suggest spellings
Code
function search_api_spellcheck_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'search_api_spellcheck') . '/views',
);
}