X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/591ffec24ad4fc5a9b4e924a329983cad8589242..765b3c57f081d3863ff59951a67da5874554db42:/src/lib/Pregunta.php
diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php
index f0e48de..5e6bd8c 100644
--- a/src/lib/Pregunta.php
+++ b/src/lib/Pregunta.php
@@ -26,13 +26,41 @@ class Pregunta extends Item
function toHTML()
{
- echo "----------------------------------------------------------------
";
- echo "#".$this->id." Fecha: ".$this->fecha."
";;
- $UsuarioPregunta = new Usuario($this->autor);
- echo $UsuarioPregunta->toHTML();
- echo $this->texto."
";
+ echo "
";
+ echo "Pregunta #".$this->id." Fecha: ".$this->fecha."
";
+ $usuarioPregunta = new Usuario($this->autor);
+ echo sprintf(' %s %s',
+ $usuarioPregunta->getFotoFilename(),
+ $usuarioPregunta->getNombre(),
+ $usuarioPregunta->getApellido(),
+ $usuarioPregunta->getNombre(),
+ $usuarioPregunta->getApellido());
+ echo "
";
+ echo $this->texto."
";
+ // Crea el boton para responder la pregunta, si el autor de la pregunta no es quien
+ // esta logueado
+ if ( $this->autor != $_SESSION['user']->getId() )
+ {
+ echo "";
+ }
+ else
+ {
+ echo "
";
+ }
+
+ // Crea el boton para ver las respuestas a la pregunta
+ echo "";
- if ( count ( $this->respuestas ) != 0 )
+/* if ( count ( $this->respuestas ) != 0 )
{
foreach ( $this->respuestas as $objRespuesta )
{
@@ -52,9 +80,8 @@ class Pregunta extends Item
echo "La respuesta aun no fue rankeada.
" ;
}
}
- }
+ }*/
}
- }
}
?>
\ No newline at end of file