/**
  * Returns the url that holds this search result.
  * @return string
  */
 public function getUrl()
 {
     if (is_null($this->url)) {
         $this->url = PageHelper::getUrl($this->getContents());
     }
     return $this->url;
 }