‪TYPO3CMS  ‪main
MaximumFileSizeViewHelper.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
22 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
23 use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
24 
31 final class ‪MaximumFileSizeViewHelper extends AbstractViewHelper
32 {
33  use CompileWithRenderStatic;
34 
35  public static function ‪renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext): string
36  {
37  $maxUploadFileSize = GeneralUtility::getMaxUploadFileSize();
38  // format according to PHP formatting rules (K = kilobytes instead of kibibytes)
39  $formattedSize = GeneralUtility::formatSize($maxUploadFileSize * 1024, '|k|M|G|T|P|E|Z|Y');
40  // remove decimals from result to match EXT:form validator integer format
41  return preg_replace('/(\d+)(.+\d{2})?([kMGTPEZY]{0,1})/', '$1$3', $formattedSize);
42  }
43 }
‪TYPO3\CMS\Form\ViewHelpers\Be
Definition: MaximumFileSizeViewHelper.php:18
‪TYPO3\CMS\Form\ViewHelpers\Be\MaximumFileSizeViewHelper\renderStatic
‪static renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
Definition: MaximumFileSizeViewHelper.php:34
‪TYPO3\CMS\Form\ViewHelpers\Be\MaximumFileSizeViewHelper
Definition: MaximumFileSizeViewHelper.php:32
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:52