BytesViewHelper extends AbstractViewHelper

ViewHelper

This class is the implementation of a Fluid ViewHelper.

View this class in the TYPO3 ViewHelper reference: <f:format.bytes>

FinalYes

Formats an integer with a byte count into human readable form.

Examples

Simple

::

{fileSize -> f:format.bytes()}

123 KB Depending on the value of {fileSize}.

With arguments

::

{fileSize -> f:format.bytes(decimals: 2, decimalSeparator: '.', thousandsSeparator: ',')}

1,023.00 B Depending on the value of {fileSize}.

You may provide an own set of units, like this: B,KB,MB,GB,TB,PB,EB,ZB,YB.

Custom units

::

{fileSize -> f:format.bytes(units: '{f:translate('viewhelper.format.bytes.units', 'fluid')}'

123 KB Depending on the value of {fileSize}.

Table of Contents

Properties

$escapeChildren  : bool
Output is escaped already. We must not escape children, to avoid double encoding.

Methods

getContentArgumentName()  : string
Explicitly set argument name to be used as content.
initializeArguments()  : void
render()  : string
Render the supplied byte count as a human-readable string.

Properties

$escapeChildren

Output is escaped already. We must not escape children, to avoid double encoding.

protected bool $escapeChildren = false

Methods

getContentArgumentName()

Explicitly set argument name to be used as content.

public getContentArgumentName() : string
Return values
string

initializeArguments()

public initializeArguments() : void

render()

Render the supplied byte count as a human-readable string.

public render() : string
Return values
string

        
On this page

Search results