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);
    }