You are here

public function SearchApiSavedSearch::url in Search API Saved Searches 7

Return the URL where this search can be viewed, if any.

File

./search_api_saved_searches.search_entity.inc, line 216
Contains the entity class for saved searches.

Class

SearchApiSavedSearch
Class representing "Saved searches" settings.

Code

public function url() {
  if (isset($this->options['page']['path'])) {
    return url($this->options['page']['path'], $this->options['page']);
  }
}