X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/0f8291748d189597a52452a196aeacbc247ee450..4cdf275eac5ad4bd335ad879fdd9a24b522ed53d:/src/lib/Pregunta.php?ds=inline diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php index 35e2c0b..80f4253 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 ( ( $this->autor == $_SESSION['user']->getId() ) && ( $objRespuesta->ranking == -1 ) ) + { + faq_form_ir_a_calificar_respuesta($objRespuesta->id); + } + } + } + } } ?> \ No newline at end of file