ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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 }
28
44 public function getResults()
45 {
46 return $this->results;
47 }
48
52 public function addResultSet(array $result_set)
53 {
54 $this->results[] = $result_set;
55 }
56
57
58}
59?>
getResults()
Get results Db search : array( array( 'obj_id' => 1, 'item_id' => 123) ); Lucene search: array( array...