ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBookingReservationDBRepositoryFactory.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected ilDBInterface $db;
26 
27  public function __construct()
28  {
29  global $DIC;
30 
31  $this->db = $DIC->database();
32  }
33 
38  {
39  return new ilBookingReservationDBRepository($this->db);
40  }
41 
46  public function getRepoWithContextObjCache(
47  array $context_obj_ids
49  return new ilBookingReservationDBRepository($this->db, $context_obj_ids);
50  }
51 }
global $DIC
Definition: feed.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRepoWithContextObjCache(array $context_obj_ids)
Get repo with reservation information preloaded for context obj ids.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...