ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.getObjectSettingsCommandHandler.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\BookingManager;
20 
25 {
27  protected \ilObjUseBookDBRepository $use_book_repo;
28 
29  public function __construct(
31  \ilObjUseBookDBRepository $use_book_repo
32  ) {
33  $this->cmd = $cmd;
34  $this->use_book_repo = $use_book_repo;
35  }
36 
37  public function handle(): getObjectSettingsResponse
38  {
39  $obj_id = $this->cmd->getObjectId();
40  $repo = $this->use_book_repo;
41 
42  $used_book_ids = $repo->getUsedBookingPools($obj_id, false);
43 
44  return new getObjectSettingsResponse(new \ilObjBookingServiceSettings($obj_id, $used_book_ids));
45  }
46 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(getObjectSettingsCommand $cmd, \ilObjUseBookDBRepository $use_book_repo)
getUsedBookingPools(int $obj_id, bool $include_deleted=true)