ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.saveObjectSettingsCommandHandler.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(): void
38  {
39  $settings = $this->cmd->getSettings();
40  $repo = $this->use_book_repo;
41 
42  $repo->updateUsedBookingPools($settings->getObjectId(), $settings->getUsedBookingObjectIds());
43  }
44 }
array $settings
Setting values (LTI parameters, custom parameters and local parameters).
Definition: System.php:200
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(saveObjectSettingsCommand $cmd, \ilObjUseBookDBRepository $use_book_repo)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateUsedBookingPools(int $obj_id, array $book_obj_ids)