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