X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/e92b831febcf1737682bfb7aa28c552a0dc8dabb..HEAD:/src/lib/Pregunta.php?ds=inline diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php index 3823275..5e6bd8c 100644 --- a/src/lib/Pregunta.php +++ b/src/lib/Pregunta.php @@ -26,25 +26,62 @@ 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('Foto de %s %s %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 "
"; + echo ""; + echo ""; + echo ""; + echo ""; + echo "
"; + } + else + { + echo "

"; + } - if ( count ( $this->respuestas ) != 0 ) + // Crea el boton para ver las respuestas a la pregunta + echo "
"; + echo ""; + echo ""; + echo ""; + echo "
"; + +/* if ( count ( $this->respuestas ) != 0 ) { foreach ( $this->respuestas as $objRespuesta ) { $objRespuesta->toHTML(); - echo $objRespuesta->ranking ; - if ( ( $this->autor == $_SESSION['user']->getId() ) && ( $objRespuesta->ranking == -1 ) ) + if ( ( $objRespuesta->ranking != -1 ) ) + { + echo "Puntaje: ".$objRespuesta->ranking."
" ; + } + else { - faq_form_ir_a_calificar_respuesta($objRespuesta->id); + 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