X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/70ef8b62924047a377924aa21ea9e05f05d9e5ec..765b3c57f081d3863ff59951a67da5874554db42:/src/lib/Pregunta.php?ds=sidebyside
diff --git a/src/lib/Pregunta.php b/src/lib/Pregunta.php
index 4d6d24b..5e6bd8c 100644
--- a/src/lib/Pregunta.php
+++ b/src/lib/Pregunta.php
@@ -9,6 +9,8 @@
// $Id$
require_once 'Item.php';
+require_once 'Usuario.php';
+require_once 'faq.forms.php';
/**
* XXX detailed description
@@ -22,21 +24,64 @@ class Pregunta extends Item
var $activa;
var $respuestas;
- function Mostrar()
+ function toHTML()
{
- echo "----------------------------------------------------------------
";
- echo "#".$this->id." Fecha: ".$this->fecha."
";;
- //echo $this->autor."
";
- echo $this->texto."
";
+ echo "
";
+ echo "Pregunta #".$this->id." Fecha: ".$this->fecha."
";
+ $usuarioPregunta = new Usuario($this->autor);
+ echo sprintf(' %s %s',
+ $usuarioPregunta->getFotoFilename(),
+ $usuarioPregunta->getNombre(),
+ $usuarioPregunta->getApellido(),
+ $usuarioPregunta->getNombre(),
+ $usuarioPregunta->getApellido());
+ echo "
";
+ echo $this->texto."
";
+ // Crea el boton para responder la pregunta, si el autor de la pregunta no es quien
+ // esta logueado
+ if ( $this->autor != $_SESSION['user']->getId() )
+ {
+ echo "";
+ }
+ else
+ {
+ echo "
";
+ }
+
+ // Crea el boton para ver las respuestas a la pregunta
+ echo "";
- if ( count ( $this->respuestas ) != 0 )
+/* if ( count ( $this->respuestas ) != 0 )
{
foreach ( $this->respuestas as $objRespuesta )
{
- $objRespuesta->Mostrar();
- }
+ $objRespuesta->toHTML();
+ if ( ( $objRespuesta->ranking != -1 ) )
+ {
+ echo "Puntaje: ".$objRespuesta->ranking."
" ;
+ }
+ else
+ {
+ if ( $this->autor == $_SESSION['user']->getId() )
+ {
+ faq_form_ir_a_calificar_respuesta($objRespuesta->id);
+ }
+ else
+ {
+ echo "La respuesta aun no fue rankeada.
" ;
+ }
+ }
+ }*/
}
- }
}
?>
\ No newline at end of file