ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilQTIPresentationMaterial.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
26{
30 protected array $flow_mat = [];
31
32 public function addFlowMat(ilQTIFlowMat $flow_mat): void
33 {
34 $this->flow_mat[] = $flow_mat;
35 }
36
37 public function getFlowMat(int $index): ?ilQTIFlowMat
38 {
39 return $this->flow_mat[$index] ?? null;
40 }
41}
Class ilQTIPresentationMaterial.
Interface ilQTIMaterialAware.