ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRepositoryObjectDetailSearchResult.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5 
17 {
18  private array $results = array();
19 
20  public function __construct()
21  {
22  }
23 
38  public function getResults(): array
39  {
40  return $this->results;
41  }
42 
43  public function addResultSet(array $result_set): void
44  {
45  $this->results[] = $result_set;
46  }
47 }
getResults()
Get results Db search : array( array( &#39;obj_id&#39; => 1, &#39;item_id&#39; => 123) ); Lucene search: array( array...