DigiComp.Menu/Classes/DigiComp/Menu/ViewHelpers/MenuViewHelper.php

43 lines
975 B
PHP
Raw Normal View History

<?php
namespace DigiComp\Menu\ViewHelpers;
2017-06-03 11:39:59 +02:00
/*
* This file is part of the DigiComp.Menu package.
*
* (c) digital competence
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/
use TYPO3\Flow\Annotations as Flow;
2017-06-03 11:39:59 +02:00
use TYPO3\Fluid\Core\ViewHelper\AbstractViewHelper;
/**
2017-06-03 11:39:59 +02:00
* Just adds the return of MenuService
* TODO: Write example
*/
2017-06-03 11:39:59 +02:00
class MenuViewHelper extends AbstractViewHelper
{
2017-06-03 11:39:59 +02:00
protected $escapeOutput = false;
/**
* @var \DigiComp\Menu\MenuService\ServiceInterface
* @Flow\Inject
*/
protected $menuService;
2017-06-03 11:39:59 +02:00
/**
* @param string $as
* @param string $forPath
* @return string
*/
public function render($as = 'menuItems', $forPath = null)
{
$this->templateVariableContainer->add($as, $this->menuService->getItems($forPath));
return $this->renderChildren();
}
}