ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjBookingServiceSettings.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 {
17  protected $obj_id;
18 
22  protected $book_obj_ids;
23 
29  public function __construct(int $obj_id, array $book_obj_ids)
30  {
31  $this->obj_id = $obj_id;
32  $this->book_obj_ids = $book_obj_ids;
33  }
34 
40  public function getObjectId() : int
41  {
42  return $this->obj_id;
43  }
44 
50  public function getUsedBookingObjectIds() : array
51  {
52  return $this->book_obj_ids;
53  }
54 }
Value object for booking service settings of a repository object.
getObjectId()
Get object id of repo object.
__construct(int $obj_id, array $book_obj_ids)
Constructor.
getUsedBookingObjectIds()
Get used booking object ids.