ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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 {
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.