Neos\FluidAdaptor\ViewHelpers\Form\AbstractFormFieldViewHelper::hasMappingErrorOccurred PHP Method

hasMappingErrorOccurred() protected method

Checks if a property mapping error has occurred in the last request.
protected hasMappingErrorOccurred ( ) : boolean
return boolean TRUE if a mapping error occurred, FALSE otherwise
    protected function hasMappingErrorOccurred()
    {
        /** @var $validationResults Result */
        $validationResults = $this->getRequest()->getInternalArgument('__submittedArgumentValidationResults');
        return $validationResults !== null && $validationResults->hasErrors();
    }