]> 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 35e2c0b9ec51ccd945f312209daef853b65b7970..4d6d24b70eb3d4777c44e6773c61dbb6cf8946d9 100644 (file)
@@ -1,5 +1,12 @@
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
@@ -11,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 "----------------------------------------------------------------<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