ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
NullPresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
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 }
labelsForVocabulary(PresentationUtilities $presentation_utilities, VocabularyInterface $vocabulary)
presentableLabels(PresentationUtilities $presentation_utilities, SlotIdentifier $slot, bool $with_unknown_vocab_flag, string ... $values)