ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBookingService.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 {
16  protected $db;
17 
21  public function __construct(ilDBInterface $db = null)
22  {
23  global $DIC;
24 
25  $this->db = ($db == null)
26  ? $DIC->database()
27  : $db;
28  }
29 
36  public function cloneSettings($source_obj_id, $target_obj_id)
37  {
38  $use_book_repo = new ilObjUseBookDBRepository($this->db);
39  $book_ref_ids = $use_book_repo->getUsedBookingPools($source_obj_id);
40  $use_book_repo->updateUsedBookingPools($target_obj_id, $book_ref_ids);
41  }
42 }
This repo stores infos on repository objects that are using booking managers as a service (resource m...
Interface ilDBInterface.
Low level api for booking service.
cloneSettings($source_obj_id, $target_obj_id)
Clone settings.
__construct(ilDBInterface $db=null)
Constructor.
$DIC
Definition: xapitoken.php:46