ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractUserInteraction.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
15 abstract class AbstractUserInteraction extends AbstractTask implements UserInteraction
16 {
17 
21  public function getMessage(array $input)
22  {
23  return $message = "";
24  }
25 
26 
30  public function canBeSkipped(array $input) : bool
31  {
32  return false;
33  }
34 
35 
41  public function getSkippedValue(array $input) : Value
42  {
43  return $input[0];
44  }
45 
46  public function isFinal(): bool
47  {
48  return true;
49  }
50 
51 
52 }
$message
Definition: xapiexit.php:14