2 // vim: set binary noeol et sw=4 sts=4 :
5 // Lucarella, Schein, Arena
7 // Creado: Jonathan Schein 01/05/2005
11 require_once 'lib/pagina.php';
12 require_once 'lib/Pregunta.php';
13 require_once 'lib/faq.functions.php';
14 require_once 'lib/validacion.php';
15 require_once 'lib/faq.forms.php';
17 marco_cabecera('Ingreso de Preguntas');
19 // Si me llegó el form completo
20 if (isset($_POST['Pregunta']))
22 // Da de alta la pregunta
23 echo Faq_IngresarPregunta( $_SESSION['user'], $_POST['Pregunta'] );
25 // Vuelve a mostrar el formulario si todavia el usuario tiene creditos sufcientes
26 // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
27 if ( $_SESSION['user']->getCreditos() > 0 )
29 faq_form_ingresar_pregunta();
34 echo warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
39 // Verifica que la persona sea asesor o tenga credito suficiente para preguntar
40 if ( $_SESSION['user']->getCreditos() > 0 )
42 faq_form_ingresar_pregunta();
46 echo warn("No esta habilitado para dar de alta una pregunta, solicite credito al administrador del sistema");
50 marco_pie('Jonathan Schein', 'jonathanschein@fibertel.com.ar', 'img/j.jpg');