X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/0f8291748d189597a52452a196aeacbc247ee450..c90e91e921f64bfb7d238a8bb37c6feb92446956:/src/lib/Pregunta.php?ds=inline
diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php
index 35e2c0b..f0e48de 100644
--- a/src/lib/Pregunta.php
+++ b/src/lib/Pregunta.php
@@ -1,7 +1,16 @@
";
+ echo "#".$this->id." Fecha: ".$this->fecha."
";;
+ $UsuarioPregunta = new Usuario($this->autor);
+ echo $UsuarioPregunta->toHTML();
+ echo $this->texto."
";
+
+ if ( count ( $this->respuestas ) != 0 )
+ {
+ foreach ( $this->respuestas as $objRespuesta )
+ {
+ $objRespuesta->toHTML();
+ if ( ( $objRespuesta->ranking != -1 ) )
+ {
+ echo "Puntaje: ".$objRespuesta->ranking."
" ;
+ }
+ else
+ {
+ if ( $this->autor == $_SESSION['user']->getId() )
+ {
+ faq_form_ir_a_calificar_respuesta($objRespuesta->id);
+ }
+ else
+ {
+ echo "La respuesta aun no fue rankeada.
" ;
+ }
+ }
+ }
+ }
+ }
}
?>
\ No newline at end of file