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

getFlexFormValues() public méthode

Converts the contents of the provided row's Flux-enabled field, at the same time running through the inheritance tree generated by getInheritanceTree() in order to apply inherited values.
public getFlexFormValues ( array $row ) : array
$row array
Résultat array
    public function getFlexFormValues(array $row)
    {
        $fieldName = $this->getFieldName($row);
        $form = $this->getForm($row);
        $languageName = $this->getCurrentLanguageName();
        $valuePointer = $this->getCurrentValuePointerName();
        return $this->configurationService->convertFlexFormContentToArray($row[$fieldName], $form, $languageName, $valuePointer);
    }