Ejemplo n.º 1
0
 /**
  * Constructor.
  */
 function ValidatorEmail()
 {
     parent::ValidatorRegExp(ValidatorEmail::getRegexp());
 }
Ejemplo n.º 2
0
 /**
  * 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));
 }
Ejemplo n.º 4
0
 /**
  * Constructor.
  */
 function ValidatorISSN()
 {
     parent::ValidatorRegExp(self::getRegexp());
 }
Ejemplo n.º 5
0
 /**
  * Constructor.
  */
 function ValidatorORCID()
 {
     parent::ValidatorRegExp(self::getRegexp());
 }