Ejemplo n.º 1
0
function getAllPinchos()
{
    return Pincho::getAllPinchos();
}
Ejemplo n.º 2
0
<?php

include_once __DIR__ . "/../resources/code/models.php";
include_once __DIR__ . "/../resources/code/lang_coverage.php";
include_once __DIR__ . "/../controller/pincho_controller.php";
include_once __DIR__ . "/../controller/pw.php";
if (!isset($_SESSION)) {
    session_start();
}
if (get_class($_SESSION["user"]) != "Administrador") {
    header("Location: 403.php");
    exit;
}
$pinchoList = Pincho::getAllPinchos();
$juradoList = Usuario::getAllJuradoProfesional();
?>

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Administración de Propuestas</title>
    
    <!-- Main CSS file -->
    <link rel="stylesheet" href="../css/bootstrap.min.css" />
    <link rel="stylesheet" href="../css/owl.carousel.css" />
    <link rel="stylesheet" href="../css/font-awesome.css" />
    <link rel="stylesheet" href="../css/style.css" />
    <link rel="stylesheet" href="../css/responsive.css" />