def = $def; $this->element = $element; } /** * Checks if CurrentToken is set and equal to $this->element */ public function validate($string, $config, $context) { $token = $context->get('CurrentToken', true); if ($token && $token->name == $this->element) return false; return $this->def->validate($string, $config, $context); } } // vim: et sw=4 sts=4