TYPO3 CMS  TYPO3_6-2
CropViewHelper.php
Go to the documentation of this file.
1 <?php
3 
38 
46  public function render($maxCharacters) {
47  if (empty($maxCharacters) || $maxCharacters < 1) {
48  throw new \TYPO3\CMS\Install\ViewHelpers\Exception(
49  'maxCharacters must be a positive integer',
50  1371410113
51  );
52  }
53  $stringToTruncate = $this->renderChildren();
54  return substr($stringToTruncate, 0, $maxCharacters);
55  }
56 }