//
// $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