/**
  * Constructor.
  */
 function ValidatorEmail()
 {
     parent::ValidatorRegExp(ValidatorEmail::getRegexp());
 }
 /**
  * Constructor.
  * @param $allowedSchemes array
  */
 function ValidatorUri($allowedSchemes = null)
 {
     parent::ValidatorRegExp(ValidatorUri::getRegexp($allowedSchemes));
 }
 /**
  * Constructor.
  */
 function ValidatorDate($dateFormat = DATE_FORMAT_ISO)
 {
     parent::ValidatorRegExp(ValidatorDate::getRegexp($dateFormat));
 }
Beispiel #4
0
 /**
  * Constructor.
  */
 function ValidatorISSN()
 {
     parent::ValidatorRegExp(self::getRegexp());
 }
Beispiel #5
0
 /**
  * Constructor.
  */
 function ValidatorORCID()
 {
     parent::ValidatorRegExp(self::getRegexp());
 }