ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullPresentation.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25use ILIAS\MetaData\Presentation\UtilitiesInterface as PresentationUtilities;
27
29{
33 public function presentableLabels(
34 PresentationUtilities $presentation_utilities,
35 SlotIdentifier $slot,
36 bool $with_unknown_vocab_flag,
37 string ...$values
38 ): \Generator {
39 yield from [];
40 }
41
45 public function labelsForVocabulary(
46 PresentationUtilities $presentation_utilities,
47 VocabularyInterface $vocabulary
48 ): \Generator {
49 yield from [];
50 }
51}
presentableLabels(PresentationUtilities $presentation_utilities, SlotIdentifier $slot, bool $with_unknown_vocab_flag, string ... $values)
labelsForVocabulary(PresentationUtilities $presentation_utilities, VocabularyInterface $vocabulary)