X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/1481a58e991e9ed54d6cba23e82184eaca48f9fe..50f33dec50c1e4b009941d2e345c55b24a3bb6d3:/src/lib/Pregunta.php?ds=inline diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php index ba8134d..4d6d24b 100644 --- a/src/lib/Pregunta.php +++ b/src/lib/Pregunta.php @@ -18,20 +18,25 @@ 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 Mostrar() + { + echo "----------------------------------------------------------------
"; + echo "#".$this->id." Fecha: ".$this->fecha."
";; + //echo $this->autor."
"; + echo $this->texto."
"; + + if ( count ( $this->respuestas ) != 0 ) + { + foreach ( $this->respuestas as $objRespuesta ) + { + $objRespuesta->Mostrar(); + } + } + } } ?> \ No newline at end of file