ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBookingPrefAutoBooking.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 
11 {
15  public function __construct()
16  {
17  global $DIC;
18 
19  $this->service = $DIC->bookingManager()->internal();
20  }
21 
26  public function run()
27  {
29 
30  $pref_repo = $service->repo()->getPreferencesRepo();
31  $book_repo = $service->repo()->getPreferenceBasedBookingRepo();
32 
33  // for all pools with an overdue preference based booking
34  foreach ($book_repo->getPoolsWithOverdueBooking() as $pool_id) {
35  $pool = new ilObjBookingPool($pool_id, false);
36  $manager = $service->domain()->preferences($pool);
37 
38  // get preferences and do the booking
39  $preferences = $pref_repo->getPreferences($pool_id);
40  $manager->storeBookings($preferences);
41  }
42  }
43 }
Class ilObjBookingPool.
$service
Definition: result.php:17
global $DIC
Definition: goto.php:24
Automatic booking of overdue pools using booking by preference.