]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/faq.ingresarPregunta.php
Agrega el manejo de creditos para el alta de preguntas
[z.facultad/75.43/tp1.git] / src / faq.ingresarPregunta.php
index ccfe630bb7eb3d396193d3c9c49643c425ab9d1d..0944d7090915bd873649a5c7e37030ad12a37ef5 100644 (file)
@@ -8,27 +8,47 @@
 //
 // $Id$
 
+require_once 'lib/pagina.php';
 require_once 'lib/Pregunta.php';
 require_once 'lib/faq.functions.php';
-require_once 'lib/pagina.php';
 require_once 'lib/validacion.php';
 require_once 'lib/faq.forms.php';
 
-marco_cabecera('Ingreso de Preguntas');
+// Chequea que se este logueado
+pagina_check_login();
+
+pagina_cabecera('Ingreso de Preguntas');
 
 // Si me llegó el form completo
-if (isset($_POST['UserId']) and isset($_POST['Pregunta']))
+echo $_SESSION['user']->getCreditos(). "Ahora sigue <br/>";
+
+if (isset($_POST['Pregunta']))
 {
     // Muestro el formulario y luego el mensaje del intento de formulacion de pregunta
-               faq_form_ingresar_pregunta();
-               // ToDO: Falta que maneje el tema de usuarios
-               echo Faq_IngresarPregunta( $_POST['UserId'], $_POST['Pregunta']);
+               // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
+               if ( $_SESSION['user']->getCreditos() > 0 ) 
+               {
+                       faq_form_ingresar_pregunta(); 
+               }
+               else
+               {
+                       echo "No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema";
+               }
+               echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] );
 }
 else 
 {
-    faq_form_ingresar_pregunta();
+    // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
+               if ( $_SESSION['user']->getCreditos() > 0 ) 
+               {
+                       faq_form_ingresar_pregunta(); 
+               }
+               else
+               {
+                       echo "No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema";
+               }
 }
 
-marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar');
+pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar');
 
 ?>
\ No newline at end of file