//
// $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';
-pagina_cabecera('Ingreso de Preguntas');
+marco_cabecera('Ingreso de Preguntas');
// Si me llegó el form completo
-if (isset($_POST['UserId']) and isset($_POST['Pregunta']))
+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']);
+ // Da de alta la pregunta
+ echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] );
+
+ // Vuelve a mostrar el formulario si todavia el usuario tiene creditos sufcientes
+ // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
+ if ( $_SESSION['user']->getCreditos() > 0 )
+ {
+ faq_form_ingresar_pregunta();
+ }
+ else
+ {
+ echo "<br/>";
+ echo warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
+ }
}
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 warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
+ }
}
-pagina_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar');
+marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');
?>
\ No newline at end of file