2 namespace TYPO3\CMS\Extensionmanager\ViewHelpers
;
4 /***************************************************************
7 * (c) 2012 Susanne Moog <susanne.moog@typo3.org>
10 * This script is part of the TYPO3 project. The TYPO3 project is
11 * free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * The GNU General Public License can be found at
17 * http://www.gnu.org/copyleft/gpl.html.
18 * A copy is found in the textfile GPL.txt and important notices to the license
19 * from the author is found in LICENSE.txt distributed with these scripts.
22 * This script is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * This copyright notice MUST APPEAR in all copies of the script!
28 ***************************************************************/
30 * Display a link to show all versions of an extension
32 * @author Susanne Moog <susanne.moog@typo3.org>
33 * @package Extension Manager
34 * @subpackage ViewHelpers
36 class ShowExtensionVersionsViewHelper
extends \TYPO3\CMS\Fluid\ViewHelpers\Link\ActionViewHelper
{
41 protected $tagName = 'a';
44 * Renders an install link
46 * @param \TYPO3\CMS\Extensionmanager\Domain\Model\Extension $extension
47 * @return string the rendered a tag
49 public function render($extension) {
50 $uriBuilder = $this->controllerContext
->getUriBuilder();
51 $action = 'showAllVersions';
52 $uri = $uriBuilder->reset()->uriFor($action, array(
53 'extensionKey' => $extension->getExtensionKey(),
56 $this->tag
->addAttribute('href', $uri);
57 $label = \TYPO3\CMS\Extbase\Utility\LocalizationUtility
::translate('extensionList.showAllVersions.label', 'extensionmanager');
58 $this->tag
->setContent($label);
59 return $this->tag
->render();