PHP 클래스 FluidTYPO3\Vhs\ViewHelpers\Variable\GetViewHelper

ViewHelper used to read the value of a current template variable. Can be used with dynamic indices in arrays: ... Or to read names of variables which contain dynamic parts: {v:variable.get(name: 'dynamic{variableName}')} If your target object is an array with unsequential yet numeric indices (e.g. {123: 'value1', 513: 'value2'}, commonly seen in reindexed UID map arrays) use useRawIndex="TRUE" to indicate you do not want your array/QueryResult/Iterator to be accessed by locating the Nth element - which is the default behavior. warning Do not try useRawKeys="TRUE" on QueryResult or ObjectStorage unless you are fully aware what you are doing. These particular types require an unpredictable index value - the SPL object hash value - when accessing members directly. This SPL indexing and the very common occurrences of QueryResult and ObjectStorage variables in templates is the very reason why useRawKeys by default is set to FALSE.
상속: extends TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper
파일 보기 프로젝트 열기: fluidtypo3/vhs

공개 메소드들

메소드 설명
render ( string $name, boolean $useRawKeys = false ) : mixed

메소드 상세

render() 공개 메소드

public render ( string $name, boolean $useRawKeys = false ) : mixed
$name string
$useRawKeys boolean
리턴 mixed