ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
InputInternal.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 2017 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
6
10
16{
17
23 public function getName();
24
25
34
35
43 public function withInput(PostData $input);
44
45
51 public function getContent();
52}
$source
Definition: linkback.php:22
An exception for terminatinating execution or to throw for unit testing.
Describes the interface of inputs that is used for internal processing of data from the client.
withInput(PostData $input)
Get an input like this with input from post data.
getContent()
Get the current content of the input.
getName()
The name of the input as used in HTML.
withNameFrom(NameSource $source)
Get an input like this one, with a different name.
Describes a source for input names.
Definition: NameSource.php:11
Describes how Input-Elements want to interact with posted data.
Definition: PostData.php:13