X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/c5fcf680548c2cb2b2e0bbdae67d1794cbe78eed..5f2bfe8167f321ab21a0b746786c9b93cdab2350:/src/faq.ingresarPregunta.php?ds=inline diff --git a/src/faq.ingresarPregunta.php b/src/faq.ingresarPregunta.php index 410e660..bc9fec2 100644 --- a/src/faq.ingresarPregunta.php +++ b/src/faq.ingresarPregunta.php @@ -14,21 +14,39 @@ require_once 'lib/faq.functions.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 "
"; + 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