ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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)