TypeSelectStaticData extends AbstractFieldGenerator implements FieldGeneratorInterface

FinalYes

Generate data for type=select fields with foreign_table=tx_styleguide_staticdata

Internal

Table of Contents

Interfaces

FieldGeneratorInterface
Interface for field value generators

Properties

$matchArray  : array<string|int, mixed>

Methods

generate()  : int
Returns the generated value to be inserted into DB for this field
match()  : bool
General match implementation checks input array against $this->matchArray.
checkMatchArray()  : bool
Recursive compare of $data with $matchArray.

Properties

$matchArray

protected array<string|int, mixed> $matchArray = ['fieldConfig' => ['config' => ['type' => 'select', 'foreign_table' => 'tx_styleguide_staticdata']]]

If all of these settings are identical to given values, match is true

Methods

generate()

Returns the generated value to be inserted into DB for this field

public generate(array<string|int, mixed> $data) : int
Parameters
$data : array<string|int, mixed>
Return values
int

match()

General match implementation checks input array against $this->matchArray.

public match(array<string|int, mixed> $data) : bool

If all keys and values of matchArray exist in $data and are identical, this generator matches.

Parameters
$data : array<string|int, mixed>
Return values
bool

checkMatchArray()

Recursive compare of $data with $matchArray.

protected checkMatchArray(array<string|int, mixed> $data, array<string|int, mixed> $matchArray) : bool
Parameters
$data : array<string|int, mixed>

Given data

$matchArray : array<string|int, mixed>

Part to mach against

Return values
bool

        
On this page

Search results