PHP Class Prado\I18N\TTranslateParameter

For example, the strings "{greeting}" and "{name}" will be replace with the values of "Hello" and "World", respectively. The substitution string must be enclose with "{" and "}". The parameters can be further translated by using TTranslate. {greeting} {name}! World Hello Namespace: System.I18N Properties - Key, string, required.
Gets or sets the string in TTranslate to substitute. - Trim, boolean,
Gets or sets an option to trim the contents of the TParam. Default is to trim the contents.
Inheritance: extends Prado\Web\UI\TControl
ファイルを表示 Open project: pradosoft/prado

Protected Properties

Property Type Description
$key string The substitution key.
$trim boolean To trim or not to trim the contents.

Public Methods

Method Description
getKey ( ) : string Get the parameter substitution key.
getParameter ( ) : string
getTrim ( ) : boolean Trim the content or not.
getValue ( )
setKey ( $value ) Set the parameter substitution key.
setTrim ( $value ) Set the option to trim the contents.
setValue ( $value )

Method Details

getKey() public method

Get the parameter substitution key.
public getKey ( ) : string
return string substitution key.

getParameter() public method

public getParameter ( ) : string
return string parameter contents.

getTrim() public method

Trim the content or not.
public getTrim ( ) : boolean
return boolean trim or not.

getValue() public method

public getValue ( )

setKey() public method

Set the parameter substitution key.
public setKey ( $value )

setTrim() public method

Set the option to trim the contents.
public setTrim ( $value )

setValue() public method

public setValue ( $value )

Property Details

$key protected_oe property

The substitution key.
protected string $key
return string

$trim protected_oe property

To trim or not to trim the contents.
protected bool $trim
return boolean