You are here

public function SearchApiSpellcheckSuggestionLink::createUrl in Search API Spellcheck 7

Sets the property 'url' with the combined path and query to the suggested search results.

1 call to SearchApiSpellcheckSuggestionLink::createUrl()
SearchApiSpellcheckSuggestionLink::__construct in includes/SearchApiSpellcheckSuggestionLink.inc
Constructor.

File

includes/SearchApiSpellcheckSuggestionLink.inc, line 73
The class is a helpful way to provide both an updated search query link and access to all the link components for themers.

Class

SearchApiSpellcheckSuggestionLink
@file The class is a helpful way to provide both an updated search query link and access to all the link components for themers.

Code

public function createUrl() {
  $this->url = url($this->path, array(
    'query' => $this->query,
  ));
}