X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/1481a58e991e9ed54d6cba23e82184eaca48f9fe..7370ef390ad178677c68b9bd7f5f7685020f452c:/src/lib/Pregunta.php diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php index ba8134d..3f2e852 100644 --- a/src/lib/Pregunta.php +++ b/src/lib/Pregunta.php @@ -9,6 +9,7 @@ // $Id$ require_once 'Item.php'; +require_once 'Usuario.php'; /** * XXX detailed description @@ -18,20 +19,31 @@ require_once 'Item.php'; */ class Pregunta extends Item { - // Attributes - /** - * XXX - * @access public - */ - var $activa; - - /** - * XXX - * @access public - */ - var $respuestas; - - // Operations + var $id; + var $activa; + var $respuestas; + + function toHTML() + { + echo "----------------------------------------------------------------
"; + 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 ) ) + { + // ToDo: Hacer que este mensaje se vea mejor + echo "Usted debe rankear esta respuesta!!!"; + } + } + } + } } ?> \ No newline at end of file