Neos\Media\ViewHelpers\Form\CheckboxViewHelper::getNameWithoutPrefix PHP 메소드

getNameWithoutPrefix() 보호된 메소드

This is done to prevent the extra __identity being added for objects since it leading to property mapping errors and it works without it.
protected getNameWithoutPrefix ( ) : string
리턴 string name
    protected function getNameWithoutPrefix()
    {
        $name = parent::getNameWithoutPrefix();
        return str_replace('[__identity]', '', $name);
    }