search_api_spellcheck.module in Search API Spellcheck 8.3
Same filename and directory in other branches
File
search_api_spellcheck.moduleView source
<?php
/**
* Implements hook_theme().
*/
function search_api_spellcheck_theme() {
$themes = [
'search_api_spellcheck_did_you_mean' => [
'variables' => [
'label' => NULL,
'link' => NULL,
],
],
'search_api_spellcheck_suggestions' => [
'variables' => [
'label' => NULL,
'suggestions' => [],
],
],
];
return $themes;
}
Functions
Name | Description |
---|---|
search_api_spellcheck_theme | Implements hook_theme(). |