X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/0f8291748d189597a52452a196aeacbc247ee450..765b3c57f081d3863ff59951a67da5874554db42:/src/lib/Respuesta.php diff --git a/src/lib/Respuesta.php b/src/lib/Respuesta.php index f7c01f8..2a073d0 100644 --- a/src/lib/Respuesta.php +++ b/src/lib/Respuesta.php @@ -1,5 +1,12 @@ "; + echo "Respuesta #".$this->id." Fecha: ".$this->fecha."
"; + $usuarioRespuesta = new Usuario($this->autor); + echo sprintf('Foto de %s %s %s %s', + $usuarioRespuesta->getFotoFilename(), + $usuarioRespuesta->getNombre(), + $usuarioRespuesta->getApellido(), + $usuarioRespuesta->getNombre(), + $usuarioRespuesta->getApellido()); + echo "
"; + echo $this->texto."
"; + + if ( ( $this->ranking != -1 ) ) + { + echo "Puntaje: ".$this->ranking."
" ; + } + else + { + if ( $this->autorPregunta == $_SESSION['user']->getId() ) + { + faq_form_ir_a_calificar_respuesta($this->id); + } + else + { + echo "La respuesta aun no fue rankeada.
" ; + } + } + } } ?> \ No newline at end of file