TYPO3 CMS  TYPO3_7-6
FileMinimumSizeValidator.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 
18 
20 {
24  protected $supportedOptions = [
25  'element' => ['', 'The name of the element', 'string', true],
26  'errorMessage' => ['', 'The error message', 'array', true],
27  'minimum' => ['', 'The minimum file size', 'integer', true],
28  ];
29 
35  const LOCALISATION_OBJECT_NAME = 'tx_form_system_validate_fileminimumsize';
36 
44  public function isValid($value)
45  {
46  $fileValue = $this->rawArgument[$this->options['element']];
47  $value = $fileValue['size'];
48  if ($value < (int)$this->options['minimum']) {
49  $this->addError(
50  $this->renderMessage(
51  $this->options['errorMessage'][0],
52  $this->options['errorMessage'][1],
53  'error'
54  ),
55  1442006702
56  );
57  }
58  }
59 
67  public function substituteMarkers($message)
68  {
69  $message = str_replace('%minimum', GeneralUtility::formatSize($this->options['minimum']), $message);
70  return $message;
71  }
72 }
addError($message, $code, array $arguments=[], $title='')
renderMessage($message=null, $type=null, $messageType='message')
static formatSize($sizeInBytes, $labels='', $base=0)