Neos\Fusion\TypoScriptObjects\AbstractTypoScriptObject::tsValue PHP 메소드

tsValue() 보호된 메소드

Note that subsequent calls of tsValue() with the same TypoScript path will return the same values since the first evaluated value will be cached in memory.
protected tsValue ( string $path ) : mixed
$path string
리턴 mixed
    protected function tsValue($path)
    {
        $fullPath = $this->path . '/' . $path;
        if (!isset($this->tsValueCache[$fullPath])) {
            $this->tsValueCache[$fullPath] = $this->tsRuntime->evaluate($fullPath, $this);
        }
        return $this->tsValueCache[$fullPath];
    }