public function updateObject($values = null)
 {
     $object = parent::updateObject($values);
     $object->setPasswordPlain($this->getValue('password'));
     $object->setCheckHash(md5(uniqid(time(), true)));
     return $object;
 }
 public function updateObject($values = null)
 {
     $object = parent::updateObject($values);
     if ($this->getValue('password_change')) {
         $object->setPasswordPlain($this->getValue('password_change'));
     }
     return $object;
 }
 public function updateObject($values = null)
 {
     $object = parent::updateObject($values);
     $object->setConfirmedEmail(true);
     return $object;
 }