TYPO3 CMS  TYPO3_8-7
ImageDimensionViewHelper.php
Go to the documentation of this file.
1 <?php
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 
36 {
38 
44  protected $escapeChildren = false;
45 
49  public function initializeArguments()
50  {
51  parent::initializeArguments();
52  $this->registerArgument('dimension', 'string', '', false, 'width');
53  }
54 
66  public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
67  {
68  $dimension = $arguments['dimension'];
69  if ($dimension !== 'width' && $dimension !== 'height') {
70  throw new \TYPO3\CMS\Install\ViewHelpers\Exception(
71  'Dimension must be either \'width\' or \'height\'',
72  1369563247
73  );
74  }
75  $absolutePathToFile = $renderChildrenClosure();
76  if (!is_file($absolutePathToFile)) {
77  throw new \TYPO3\CMS\Install\ViewHelpers\Exception(
78  'File not found',
79  1369563248
80  );
81  }
82  $actualDimension = getimagesize($absolutePathToFile);
83  if ($dimension === 'width') {
84  $size = $actualDimension[0];
85  } else {
86  $size = $actualDimension[1];
87  }
88  return $size;
89  }
90 }
static renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)