TYPO3 CMS  TYPO3_6-2
IntegerValidator.php
Go to the documentation of this file.
1 <?php
3 
23 
31  public function isValid($value) {
32  if (filter_var($value, FILTER_VALIDATE_INT) === FALSE) {
33  $this->addError(
34  $this->translateErrorMessage(
35  'validator.integer.notvalid',
36  'extbase'
37  ), 1221560494);
38  }
39  }
40 }
addError($message, $code, array $arguments=array(), $title='')
translateErrorMessage($translateKey, $extensionName, $arguments=array())