Example #1
0
 /**
  * Return a new SearchResult and initializes it with a row.
  *
  * @param $row object
  * @return SearchResult
  */
 public static function newFromRow($row)
 {
     $result = new self();
     $result->initFromRow($row);
     return $result;
 }