ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjBookingServiceSettings.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  // repository object id (e.g. a course)
26  protected int $obj_id;
28  protected array $book_obj_ids;
29 
34  public function __construct(
35  int $obj_id,
36  array $book_obj_ids
37  ) {
38  $this->obj_id = $obj_id;
39  $this->book_obj_ids = $book_obj_ids;
40  }
41 
42  // Get object id of repo object
43  public function getObjectId(): int
44  {
45  return $this->obj_id;
46  }
47 
52  public function getUsedBookingObjectIds(): array
53  {
54  return $this->book_obj_ids;
55  }
56 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $obj_id, array $book_obj_ids)
getUsedBookingObjectIds()
Get used booking object ids.