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 
15 interface InputInternal
16 {
17 
23  public function getName();
24 
25 
33  public function withNameFrom(NameSource $source);
34 
35 
43  public function withInput(PostData $input);
44 
45 
51  public function getContent();
52 }
withNameFrom(NameSource $source)
Get an input like this one, with a different name.
withInput(PostData $input)
Get an input like this with input from post data.
Describes the interface of inputs that is used for internal processing of data from the client...
getName()
The name of the input as used in HTML.
getContent()
Get the current content of the input.
Describes how Input-Elements want to interact with posted data.
Definition: PostData.php:12
$source
Definition: linkback.php:22
Describes a source for input names.
Definition: NameSource.php:10