search-api-spellcheck-single-suggestion.tpl.php in Search API Spellcheck 7
Displays a single spellcheck suggestion
Available variables
- $suggestion
- $suggestion->link
- $suggestion->suggestion
- $suggestion->original
- $suggestion->url
1 theme call to search-api-spellcheck-single-suggestion.tpl.php
- theme_search_api_spellcheck in theme/
search_api_spellcheck.theme.inc - Outputs 'Did you mean:' spelling suggestions with links to the current search page with spelling improvements.
File
theme/search-api-spellcheck-single-suggestion.tpl.phpView source
<?php
/**
* @file
* Displays a single spellcheck suggestion
*
* Available variables
* - $suggestion
* - $suggestion->link
* - $suggestion->suggestion
* - $suggestion->original
* - $suggestion->url
*
* @ingroup themeable
*/
print t('Did you mean: !link?', array(
'!link' => $suggestion->link,
));