You are here

search_api_spellcheck.module in Search API Spellcheck 8.3

Same filename and directory in other branches
  1. 7 search_api_spellcheck.module

File

search_api_spellcheck.module
View 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

Namesort descending Description
search_api_spellcheck_theme Implements hook_theme().