evaluate() 공개 메소드

Evaluate the collection nodes
public evaluate ( ) : string
리턴 string
 /**
  * Evaluate the collection nodes
  *
  * @return string
  * @throws TypoScriptException
  */
 public function evaluate()
 {
     $items = parent::evaluate();
     $collection = $this->tsValue('appendTo');
     return array_merge($collection, $items);
 }