ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.BlockItemsInfo.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
28 {
29  protected bool $limit_exhausted = false;
30  protected array $ref_ids = [];
31 
32  public function __construct(
33  array $ref_ids,
34  bool $limit_exhausted
35  ) {
36  $this->ref_ids = $ref_ids;
37  $this->limit_exhausted = $limit_exhausted;
38  }
39 
40  public function getRefIds(): array
41  {
42  return $this->ref_ids;
43  }
44 
45  public function getLimitExhausted(): bool
46  {
48  }
49 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(array $ref_ids, bool $limit_exhausted)