You are here

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

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

File

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

Class

SearchApiSavedSearch
Class representing "Saved searches" settings.

Code

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