Methods summary
public
mixed
|
#
getParameter( string $strKey, boolean $blnRaw = false )
Retrieve a request parameter.
Retrieve a request parameter.
Parameters
- $strKey
string $strKey The name of the parameter to be retrieved.
- $blnRaw
boolean $blnRaw Boolean flag to determine if the content shall be returned RAW or rather
be stripped of potential malicious content.
Returns
mixed
Implementation of
|
public
DcGeneral\InputProviderInterface
|
#
setParameter( string $strKey, mixed $varValue )
Save/change a request parameter.
Save/change a request parameter.
Parameters
- $strKey
string $strKey The name of the parameter to be stored.
- $varValue
mixed $varValue The value to be stored.
Returns
Implementation of
|
public
DcGeneral\InputProviderInterface
|
#
unsetParameter( string $strKey )
Unset a request parameter.
Unset a request parameter.
Parameters
- $strKey
string $strKey The name of the parameter to be removed.
Returns
Implementation of
|
public
boolean
|
#
hasParameter( string $strKey )
Determines if a request parameter is defined.
Determines if a request parameter is defined.
Parameters
- $strKey
string $strKey The name of the parameter to be checked.
Returns
boolean
Implementation of
|
public
mixed
|
#
getValue( string $strKey, boolean $blnRaw = false )
Retrieve a request value.
Retrieve a request value.
Parameters
- $strKey
string $strKey The name of the value to be retrieved.
- $blnRaw
boolean $blnRaw Boolean flag to determine if the content shall be returned RAW or rather
be stripped of potential malicious content.
Returns
mixed
Implementation of
|
public
DcGeneral\InputProviderInterface
|
#
setValue( string $strKey, mixed $varValue )
Save/change a request value.
Save/change a request value.
Parameters
- $strKey
string $strKey The name of the value to be stored.
- $varValue
mixed $varValue The value to be stored.
Returns
Implementation of
|
public
DcGeneral\InputProviderInterface
|
#
unsetValue( string $strKey )
Unset a request value.
Parameters
- $strKey
string $strKey The name of the value to be removed.
Returns
Implementation of
|
public
boolean
|
#
hasValue( string $strKey )
Determines if a request value is defined.
Determines if a request value is defined.
Parameters
- $strKey
string $strKey The name of the value to be checked.
Returns
boolean
Implementation of
|
public
mixed
|
#
getPersistentValue( string $strKey )
Retrieve a persistent value.
Retrieve a persistent value.
Parameters
- $strKey
string $strKey The name of the value to be retrieved.
Returns
mixed
Implementation of
|
public
DcGeneral\InputProviderInterface
|
#
setPersistentValue( string $strKey, mixed $varValue )
Save/change a persistent value.
Save/change a persistent value.
Parameters
- $strKey
string $strKey The name of the value to be stored.
- $varValue
mixed $varValue The value to be stored.
Returns
Implementation of
|
public
boolean
|
#
hasPersistentValue( string $strKey )
Determines if a persistent value is defined.
Determines if a persistent value is defined.
Parameters
- $strKey
string $strKey The name of the value to be checked.
Returns
boolean
Implementation of
|
public
string
|
#
getRequestUrl( )
Retrieve the current request url.
Retrieve the current request url.
Returns
string
Implementation of
|