]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Pregunta.php
Se agregan mĂ©todos: addCreditos(), login(), asociado() y getAll() (los Ășltimos 2
[z.facultad/75.43/tp1.git] / src / lib / Pregunta.php
index ba8134d1ced286dd86f4577c475c64e2c79b4fbd..3f2e8529eb54999a5a4902ce83d68a76aa18ad44 100644 (file)
@@ -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 "----------------------------------------------------------------<br>";
+               echo "#".$this->id." Fecha: ".$this->fecha."<br>";;
+               $UsuarioPregunta = new Usuario($this->autor);
+               echo $UsuarioPregunta->toHTML();
+               echo $this->texto."<br>";
+               
+               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