--- a/busui/owa/plugins/validations/subStringPosition.php +++ b/busui/owa/plugins/validations/subStringPosition.php @@ -1,1 +1,83 @@ - + + * @copyright Copyright © 2006 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.0.0 + */ + + class owa_subStringPositionValidation extends owa_validation { + + function __construct() { + + return parent::__construct(); + } + + function validate() { + + $value = $this->getValues(); + + $substring = $this->getConfig('subString'); + $pos = strpos($value, $substring); + + $operator = $this->getConfig('operator'); + $position = $this->getConfig('position'); + + switch ($operator) { + + case "=": + + if ($pos === $position) { + ; + } else { + $this->hasError(); + } + + + break; + + case "!=": + + if ($pos === $position) { + $this->hasError(); + } + + break; + } + + $error = $this->getErrorMsg(); + + if (empty($error)) { + $error = $this->setErrorMessage(sprintf('The string "%s" was found within the value at position %d', $subString, $pos)); + } + + + + } + + } + + +?>