ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.saveObjectSettingsCommandHandler.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 
5 namespace ILIAS\BookingManager;
6 
14 {
18  protected $cmd;
19 
23  protected $use_book_repo;
24 
28  public function __construct(
31  ) {
32  $this->cmd = $cmd;
33  $this->use_book_repo = $use_book_repo;
34  }
35 
36  public function handle()
37  {
38  $settings = $this->cmd->getSettings();
39  $repo = $this->use_book_repo;
40 
41  $repo->updateUsedBookingPools($settings->getObjectId(), $settings->getUsedBookingObjectIds());
42  }
43 }
This repo stores infos on repository objects that are using booking managers as a service (resource m...
__construct(saveObjectSettingsCommand $cmd, \ilObjUseBookDBRepository $use_book_repo)
Constructor.