ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NotFoundUserInteraction.php
Go to the documentation of this file.
1 <?php
2 
20 
27 
33 {
37  public function getInputTypes(): array
38  {
39  return [];
40  }
41 
42  public function getOutputType(): Type
43  {
44  return new SingleType('none');
45  }
46 
50  public function getOptions(array $input): array
51  {
52  return [];
53  }
54 
55  public function interaction(array $input, Option $user_selected_option, Bucket $bucket): Value
56  {
57  return new BooleanValue();
58  }
59 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: AbstractJob.php:19
interaction(array $input, Option $user_selected_option, Bucket $bucket)