PHP Class Prado\I18N\TNumberFormat

Numbers can be formatted as currency, percentage, decimal or scientific numbers by specifying the Type attribute. The known types are "currency", "percentage", "decimal" and "scientific". If someone from US want to see sales figures from a store in Germany (say using the EURO currency), formatted using the german currency, you would need to use the attribute Culture="de_DE" to get the currency right, e.g. 100,00. The decimal and grouping separator is then also from the de_DE locale. This may lead to some confusion because people from US know the "," as thousand separator. Therefore a "Currency" attribute is available, so that the output from the following example results in 100.00. Namespace: System.I18N Properties - Value, number,
Gets or sets the number to format. The tag content is used as Value if the Value property is not specified. - Type, string,
Gets or sets the formatting type. The valid types are 'decimal', 'currency', 'percentage' and 'scientific'. - Currency, string,
Gets or sets the currency symbol for the currency format. The default is 'USD' if the Currency property is not specified. - Pattern, string,
Gets or sets the custom number formatting pattern. - DefaultText, string,
Gets or sets the default text. If Value is not set, DefaultText will be shown instead of the default currency Value/Pattern.
Inheritance: extends TI18NControl, implements Prado\IDataRenderer
Afficher le fichier Open project: pradosoft/prado

Protected Properties

Свойство Type Description
$formatter Prado\I18N\core\NumberFormat Default NumberFormat, set to the application culture.

Méthodes publiques

Méthode Description
getCurrency ( ) : string
getData ( ) : string Get the numberic value for this control.
getDefaultText ( ) : string Get the default text value for this control.
getPattern ( ) : string Get the number formatting pattern.
getType ( ) : string Get the formatting type for this control.
getValue ( ) : string Get the numberic value for this control.
render ( $writer )
setCurrency ( $currency ) Set the 3-letter ISO 4217 code. For example, the code "USD" represents the US Dollar and "EUR" represents the Euro currency.
setData ( $value ) Set the numberic value for this control.
setDefaultText ( $value ) Set the default text value for this control.
setPattern ( $pattern ) Set the number format pattern.
setType ( $type ) Set the formatting type for this control.
setValue ( $value ) Set the numberic value for this control.

Méthodes protégées

Méthode Description
getFormattedValue ( ) : string Formats the localized number, be it currency or decimal, or percentage.

Method Details

getCurrency() public méthode

public getCurrency ( ) : string
Résultat string 3 letter currency code. Defaults to 'USD'.

getData() public méthode

This method is required by {@link \Prado\IDataRenderer}. It is the same as {@link getValue()}.
See also: getValue
Since: 3.1.2
public getData ( ) : string
Résultat string number

getDefaultText() public méthode

Get the default text value for this control.
public getDefaultText ( ) : string
Résultat string default text value

getFormattedValue() protected méthode

If the culture is not specified, the default application culture will be used.
protected getFormattedValue ( ) : string
Résultat string formatted number

getPattern() public méthode

Get the number formatting pattern.
public getPattern ( ) : string
Résultat string format pattern.

getType() public méthode

Get the formatting type for this control.
public getType ( ) : string
Résultat string formatting type.

getValue() public méthode

Get the numberic value for this control.
public getValue ( ) : string
Résultat string number

render() public méthode

public render ( $writer )

setCurrency() public méthode

Set the 3-letter ISO 4217 code. For example, the code "USD" represents the US Dollar and "EUR" represents the Euro currency.
public setCurrency ( $currency )

setData() public méthode

This method is required by {@link \Prado\IDataRenderer}. It is the same as {@link setValue()}.
See also: setValue
Since: 3.1.2
public setData ( $value )

setDefaultText() public méthode

Set the default text value for this control.
public setDefaultText ( $value )

setPattern() public méthode

Set the number format pattern.
public setPattern ( $pattern )

setType() public méthode

Set the formatting type for this control.
public setType ( $type )

setValue() public méthode

Set the numberic value for this control.
public setValue ( $value )

Property Details

$formatter protected_oe static_oe property

Default NumberFormat, set to the application culture.
protected static NumberFormat,Prado\I18N\core $formatter
Résultat Prado\I18N\core\NumberFormat