]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Pregunta.php
80f4253a4e20a0c3390c34e02b11273515b108bc
[z.facultad/75.43/tp1.git] / src / lib / Pregunta.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
8 //
9 // $Id$
10
11 require_once 'Item.php';
12 require_once 'Usuario.php';
13 require_once 'faq.forms.php';
14
15 /**
16  * XXX detailed description
17  *
18  * @author    XXX
19  * @copyright XXX
20  */
21 class Pregunta extends Item
22 {
23    var $id;
24    var $activa;
25          var $respuestas;
26          
27          function toHTML()
28          {
29           echo "----------------------------------------------------------------<br>";
30                 echo "#".$this->id." Fecha: ".$this->fecha."<br>";;
31                 $UsuarioPregunta = new Usuario($this->autor);
32                 echo $UsuarioPregunta->toHTML();
33                 echo $this->texto."<br>";
34                 
35                 if ( count ( $this->respuestas ) != 0 )
36                 {
37                  foreach ( $this->respuestas as $objRespuesta )
38                  {
39                         $objRespuesta->toHTML();
40                         if ( ( $this->autor == $_SESSION['user']->getId() ) && ( $objRespuesta->ranking == -1 ) )
41                         {
42                                  faq_form_ir_a_calificar_respuesta($objRespuesta->id);
43                         }
44                  }
45                 }
46         }
47 }
48
49 ?>