public function isValid($value)
 {
     $ret = parent::isValid($value);
     if ($ret) {
         $mapper = new Application_Model_CsrfhashMapper();
         $mapper->deleteByCsrf($value);
     }
     return $ret;
 }