TYPO3  7.6
DownloadExtensionDataViewHelper.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Extensionmanager\ViewHelpers;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
20 
26 {
30  protected $tagName = 'a';
31 
38  public function render($extension)
39  {
41  $iconFactory = GeneralUtility::makeInstance(IconFactory::class);
42 
43  $filePrefix = PATH_site . $extension['siteRelPath'];
44  if (!file_exists(($filePrefix . 'ext_tables.sql')) && !file_exists(($filePrefix . 'ext_tables_static+adt.sql'))) {
45  return '<span class="btn btn-default disabled">' . $iconFactory->getIcon('empty-empty', Icon::SIZE_SMALL)->render() . '</span>';
46  }
47  $uriBuilder = $this->controllerContext->getUriBuilder();
48  $uriBuilder->reset();
49  $uri = $uriBuilder->uriFor('downloadExtensionData', array(
50  'extension' => $extension['key']
51  ), 'Action');
52  $this->tag->addAttribute('href', $uri);
53  $cssClass = 'downloadExtensionData btn btn-default';
54  $this->tag->addAttribute('class', $cssClass);
55  $this->tag->addAttribute('title', \TYPO3\CMS\Extbase\Utility\LocalizationUtility::translate('extensionList.downloadsql', 'extensionmanager'));
56  $this->tag->setContent($iconFactory->getIcon('actions-system-extension-sqldump', Icon::SIZE_SMALL)->render());
57  return $this->tag->render();
58  }
59 }