Neos\Fusion\Core\Parser::getCurrentObjectPathPrefix PHP 메소드

getCurrentObjectPathPrefix() 보호된 메소드

Returns the first part of an object path from the current object path stack which can be used to prefix a relative object path.
protected getCurrentObjectPathPrefix ( ) : string
리턴 string A part of an object path, ready to use as a prefix
    protected function getCurrentObjectPathPrefix()
    {
        $lastElementOfStack = end($this->currentObjectPathStack);
        return $lastElementOfStack !== false ? $lastElementOfStack . '.' : '';
    }