public function save(PropelPDO $con = null) { if ($this->isNew()) { $clave = $this->getClave(); $this->setClave(sha1($clave)); } else { $clave = $this->getClave(); $this->setClave($clave); // sfContext::getInstance()->getLogger()->log("VelNot CLAVE ".$clave); } return parent::save($con); }
public function save(PropelPDO $con = null) { $BitacoraCambios = new BitacoraCambios(); $BitacoraCambios->setModelo('Usuario'); $BitacoraCambios->setIp(sfContext::getInstance()->getRequest()->getRemoteAddress()); if ($this->isNew()) { $clave = $this->getClave(); $this->setClave(sha1($clave)); $BitacoraCambios->setDescripcion('Creacion de Usuario: ' . $this->getUsuario()); } else { $clave = $this->getClave(); $this->setClave($clave); $BitacoraCambios->setDescripcion('Modificacion de Usuario: ' . $this->getUsuario()); } $Usuario = UsuarioQuery::create()->findOneById(sfContext::getInstance()->getUser()->getAttribute('usuario', null, 'seguridad')); if ($Usuario) { $BitacoraCambios->setCreatedBy($Usuario->getUsuario()); } $BitacoraCambios->save(); return parent::save($con); }