2021-04-26 22:40:34 +02:00
|
|
|
<?php
|
|
|
|
class Panel {
|
2021-05-02 16:01:05 +02:00
|
|
|
private $state;
|
|
|
|
private $login;
|
|
|
|
|
2021-04-26 22:40:34 +02:00
|
|
|
function __construct($panel, $login){
|
|
|
|
$this->state = $panel;
|
|
|
|
$this->login= $login;
|
|
|
|
}
|
|
|
|
|
2021-05-02 16:01:05 +02:00
|
|
|
function showPanel($template) {
|
2021-04-26 22:40:34 +02:00
|
|
|
if($this->login){
|
|
|
|
switch($this->state) {
|
2021-05-02 16:01:05 +02:00
|
|
|
case 'uf': require_once('updateFilm.php'); break;
|
2021-04-26 22:40:34 +02:00
|
|
|
case 'mc': /*require_once('manage_cinemas.php')*/;echo"<h1>En construcción</h1>"; break;
|
2021-05-02 16:01:05 +02:00
|
|
|
case 'mf': require_once('manage_films.php');
|
|
|
|
addFilm();
|
|
|
|
$template->print_fimls();
|
|
|
|
break;
|
2021-04-26 22:40:34 +02:00
|
|
|
case 'md': /*require_once('manage_discounts.php')*/;echo"<h1>En construcción</h1>"; break;
|
|
|
|
case 'mm': /*require_once('manage_managers.php')*/;echo"<h1>En construcción</h1>"; break;
|
|
|
|
case 'un': echo"<h1>En construcción</h1>"; break;
|
|
|
|
case 'ur': echo"<h1>En construcción</h1>";; break;
|
|
|
|
case 'ag': echo"<h1>En construcción</h1>";; break;
|
|
|
|
default: echo "<h1>BIENVENIDO AL PANEL DE ADMINISTRADOR</h1>"; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo "<h1>NO TIENES PERMISOS DE ADMINISTRADOR</h1>";
|
|
|
|
}
|
|
|
|
}
|
2021-05-02 16:01:05 +02:00
|
|
|
|
|
|
|
function getTemplate(){
|
|
|
|
return $this->template;
|
|
|
|
}
|
2021-04-26 22:40:34 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|