Neos\Flow\Mvc\Controller\MvcPropertyMappingConfiguration::allowModificationForSubProperty PHP 메소드

allowModificationForSubProperty() 공개 메소드

Allow modification for a given property path
public allowModificationForSubProperty ( string $propertyPath ) : MvcPropertyMappingConfiguration
$propertyPath string
리턴 MvcPropertyMappingConfiguration this
    public function allowModificationForSubProperty($propertyPath)
    {
        $this->forProperty($propertyPath)->setTypeConverterOption(PersistentObjectConverter::class, PersistentObjectConverter::CONFIGURATION_MODIFICATION_ALLOWED, true);
        return $this;
    }