ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
NotFoundUserInteraction.php
Go to the documentation of this file.
1 <?php
2 
20 
28 
34 {
38  public function getInputTypes(): array
39  {
40  return [];
41  }
42 
43  public function getOutputType(): Type
44  {
45  return new SingleType('none');
46  }
47 
51  public function getOptions(array $input): array
52  {
53  return [];
54  }
55 
56  public function interaction(array $input, Option $user_selected_option, Bucket $bucket): Value
57  {
58  return new BooleanValue();
59  }
60 }
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)