ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilRepositoryObjectDetailSearchResult.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once './Services/Search/classes/class.ilSearchSettings.php';
5
18{
19 private $results = array();
20
24 public function __construct()
25 {
26 }
27
43 public function getResults()
44 {
45 return $this->results;
46 }
47
51 public function addResultSet(array $result_set)
52 {
53 $this->results[] = $result_set;
54 }
55}
An exception for terminatinating execution or to throw for unit testing.
getResults()
Get results Db search : array( array( 'obj_id' => 1, 'item_id' => 123) ); Lucene search: array( array...