ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
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 
11 
16 interface InputInternal extends Input
17 {
23  public function getName();
24 
25 
33  public function withInput(InputData $input);
34 
35 
41  public function getContent();
42 }
Describes the interface of inputs that is used for internal processing of data from the client...
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:12
getName()
The name of the input as used in HTML.
withInput(InputData $input)
Get an input like this with input from post data.
getContent()
Get the current content of the input.