TYPO3  7.6
Public Member Functions | Protected Attributes | List of all members
ValidationElement Class Reference
Inheritance diagram for ValidationElement:
AbstractEntity AbstractDomainObject DomainObjectInterface ObjectMonitoringInterface

Public Member Functions

 getIncomingFields ()
 
 setIncomingFields ($incomingFields=array())
 
 getIncomingField ($key= '')
 
 setIncomingField ($key= '', $value=null)
 
 hasIncomingField ($key)
 

Protected Attributes

 $incomingFields
 

Additional Inherited Members

- Protected Member Functions inherited from AbstractDomainObject
 isPropertyDirty ($previousValue, $currentValue)
 

Detailed Description

The ValidationElement Domain Model represents the low-level view on the user submitted data in a flat hierarchy.

Definition at line 23 of file ValidationElement.php.

Member Function Documentation

getIncomingField (   $key = '')

Get a single fields from the request

Parameters
string$key
Returns
mixed

Definition at line 59 of file ValidationElement.php.

getIncomingFields ( )

Return a array with all the fields from the request

Returns
array

Definition at line 37 of file ValidationElement.php.

References ValidationElement\$incomingFields.

Referenced by FrontendController\confirmationAction().

hasIncomingField (   $key)

Determines whether a field is part of the incoming fields.

Parameters
string$keyThe key of the field to be looked up
Returns
bool

Definition at line 82 of file ValidationElement.php.

setIncomingField (   $key = '',
  $value = null 
)

Set a single fields from the request

Parameters
string$key
mixed$value
Returns
array

Definition at line 71 of file ValidationElement.php.

setIncomingFields (   $incomingFields = array())

Sets a array with all the fields from the request

Parameters
array$incomingFields
Returns
void

Definition at line 48 of file ValidationElement.php.

References ValidationElement\$incomingFields.

Member Data Documentation

$incomingFields
protected