ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ReservationManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
31 {
35 
36  public function __construct(
37  InternalDataService $data,
38  InternalRepoService $repo,
39  InternalDomainService $domain
40  ) {
41  $this->data = $data;
42  $this->repo = $repo;
43  $this->domain = $domain;
44  }
45 
46  public function getAvailableNr(
47  int $object_id,
48  int $from,
49  int $to
50  ): int {
51  $counter = \ilBookingReservation::getAvailableObject(array($object_id), $from, $to, false, true);
52  return (int) $counter[$object_id];
53  }
54 }
static getAvailableObject(array $a_ids, int $a_from, int $a_to, bool $a_return_single=true, bool $a_return_counter=false)
Check if any of given objects are bookable.
__construct(InternalDataService $data, InternalRepoService $repo, InternalDomainService $domain)
Author: Alexander Killing killing@leifos.de
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...