TYPO3 CMS  TYPO3_6-2
AlphanumericValidator.php
Go to the documentation of this file.
1 <?php
3 
22 
30  public function isValid($value) {
31  if (!is_string($value) || preg_match('/^[\pL\d]*$/u', $value) !== 1) {
32  $this->addError($this->translateErrorMessage('validator.alphanumeric.notvalid', 'extbase'), 1221551320);
33  }
34  }
35 }
addError($message, $code, array $arguments=array(), $title='')
translateErrorMessage($translateKey, $extensionName, $arguments=array())