Neos\FluidAdaptor\ViewHelpers\Form\AbstractFormFieldViewHelper::getPropertyPath PHP Метод

getPropertyPath() защищенный Метод

For this will be ".foo.bar" For this will be "foo.bar.baz"
protected getPropertyPath ( ) : string
Результат string
    protected function getPropertyPath()
    {
        if ($this->isObjectAccessorMode()) {
            $formObjectName = $this->viewHelperVariableContainer->get(\Neos\FluidAdaptor\ViewHelpers\FormViewHelper::class, 'formObjectName');
            if (strlen($formObjectName) === 0) {
                return $this->arguments['property'];
            } else {
                return $formObjectName . '.' . $this->arguments['property'];
            }
        }
        return rtrim(preg_replace('/(\\]\\[|\\[|\\])/', '.', $this->getNameWithoutPrefix()), '.');
    }