]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Pregunta.php
Saco link de Ingresar si faltan admins.
[z.facultad/75.43/tp1.git] / src / lib / Pregunta.php
index ba8134d1ced286dd86f4577c475c64e2c79b4fbd..4d6d24b70eb3d4777c44e6773c61dbb6cf8946d9 100644 (file)
@@ -18,20 +18,25 @@ require_once 'Item.php';
  */
 class Pregunta extends Item
 {
  */
 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 "----------------------------------------------------------------<br>";
+               echo "#".$this->id." Fecha: ".$this->fecha."<br>";;
+               //echo $this->autor."<br>";
+               echo $this->texto."<br>";
+               
+               if ( count ( $this->respuestas ) != 0 )
+               {
+                foreach ( $this->respuestas as $objRespuesta )
+                {
+                       $objRespuesta->Mostrar();
+                }
+               }
+       }
 }
 
 ?>
\ No newline at end of file
 }
 
 ?>
\ No newline at end of file