ILIAS  release_7 Revision v7.30-3-g800a261c036
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
16interface InputInternal extends Input
17{
23 public function getName();
24
25
33 public function withInput(InputData $input);
34
35
41 public function getContent();
42}
An exception for terminatinating execution or to throw for unit testing.
This describes commonalities between all inputs.
Definition: Input.php:32
Describes the interface of inputs that is used for internal processing of data from the client.
getContent()
Get the current content of the input.
getName()
The name of the input as used in HTML.
withInput(InputData $input)
Get an input like this with input from post data.
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:13
Describes a source for input names.
Definition: NameSource.php:11