interface RenderCellCollectionInterface implements RenderCellInterface, FormatterAwareInterface (View source)

Constants

PRIORITY_FIRST

PRIORITY_NORMAL

PRIORITY_FALLBACK

Methods

mixed
renderCell(string $key, mixed $cellData, FormatterOptions $options, array $rowData)

Convert the contents of one table cell into a string, so that it may be placed in the table. Renderer should return the $cellData passed to it if it does not wish to process it.

setFormatter(FormatterInterface $formatter)

No description

getFormatter()

No description

isHumanReadable()

No description

$this
addRenderer(RenderCellInterface $renderer)

Add a renderer

Details

mixed renderCell(string $key, mixed $cellData, FormatterOptions $options, array $rowData)

Convert the contents of one table cell into a string, so that it may be placed in the table. Renderer should return the $cellData passed to it if it does not wish to process it.

Parameters

string $key

Identifier of the cell being rendered

mixed $cellData

The data to render

FormatterOptions $options

The formatting options

array $rowData

The rest of the row data

Return Value

mixed

setFormatter(FormatterInterface $formatter)

No description

Parameters

FormatterInterface $formatter

getFormatter()

No description

isHumanReadable()

No description

$this addRenderer(RenderCellInterface $renderer)

Add a renderer

Parameters

RenderCellInterface $renderer

Return Value

$this