ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBookingService.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected ilDBInterface $db;
27 
28  public function __construct(?ilDBInterface $db = null)
29  {
30  global $DIC;
31 
32  $this->db = $db ?? $DIC->database();
33  }
34 
35  public function cloneSettings(
36  int $source_obj_id,
37  int $target_obj_id
38  ): void {
39  $use_book_repo = new ilObjUseBookDBRepository($this->db);
40  $book_ref_ids = $use_book_repo->getUsedBookingPools($source_obj_id, false);
41  $use_book_repo->updateUsedBookingPools($target_obj_id, $book_ref_ids);
42  }
43 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
cloneSettings(int $source_obj_id, int $target_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
__construct(?ilDBInterface $db=null)