コード例 #1
0
ファイル: LayoutViewHelper.php プロジェクト: typo3/fluid
 /**
  * On the post parse event, add the "layoutName" variable to the variable container so it can be used by the TemplateView.
  *
  * @param ViewHelperNode $node
  * @param array $arguments
  * @param VariableProviderInterface $variableContainer
  * @return void
  */
 public static function postParseEvent(ViewHelperNode $node, array $arguments, VariableProviderInterface $variableContainer)
 {
     if (isset($arguments['name'])) {
         $layoutNameNode = $arguments['name'];
     } else {
         $layoutNameNode = 'Default';
     }
     $variableContainer->add('layoutName', $layoutNameNode);
 }