ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRepositoryObjectDetailSearchResult.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
31 {
32  private array $results = array();
33 
34  public function __construct()
35  {
36  }
37 
52  public function getResults(): array
53  {
54  return $this->results;
55  }
56 
57  public function addResultSet(array $result_set): void
58  {
59  $this->results[] = $result_set;
60  }
61 }
getResults()
Get results Db search : array( array( &#39;obj_id&#39; => 1, &#39;item_id&#39; => 123) ); Lucene search: array( array...