FluidTYPO3\Flux\Provider\AbstractProvider::processTableConfiguration PHP Méthode

processTableConfiguration() public méthode

Processes the table configuration (TCA) for the table associated with this Provider, as determined by the trigger() method. Gets passed an instance of the record being edited/created along with the current configuration array - and must return a complete copy of the configuration array manipulated to the Provider's needs.
public processTableConfiguration ( array $row, array $configuration ) : array
$row array The record being edited/created
$configuration array
Résultat array The large FormEngine configuration array - see FormEngine documentation!
    public function processTableConfiguration(array $row, array $configuration)
    {
        return $configuration;
    }