ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ItemGroupBlock.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27class ItemGroupBlock implements Block
28{
29 protected int $ref_id;
30
31 public function __construct(int $ref_id)
32 {
33 $this->ref_id = $ref_id;
34 }
35
36 public function getRefId(): int
37 {
38 return $this->ref_id;
39 }
40}
A block that holds a single item group.