ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
AbstractUserInteraction.php
Go to the documentation of this file.
1<?php
2
4
7
15abstract 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}
An exception for terminatinating execution or to throw for unit testing.
$message
Definition: xapiexit.php:14