state = $panel; $this->login= $login; } function showPanel($template) { $this->prefix = $template->get_prefix(); if($this->login){ switch($this->state) { case 'mc': if(isset($_POST['edit_cinema'])) { $this->editCinema(); } else if(isset($_POST['delete_cinema'])) { $this->deleteCinema(); } else { $this-> addCinema(); echo ($template->print_cinemas()); }; break; case 'mf': if(isset($_POST['edit_film'])) { $this->editFilm(); } else if(isset($_POST['delete_film'])) { $this->deleteFilm(); } else { $this->addFilm(); echo( $template->print_fimls()); }; break; case 'mp': if(isset($_POST['edit_promotion'])) { $this->editPromotion(); } else if(isset($_POST['delete_promotion'])) { $this->deletePromotion(); } else { $this->addPromotion(); $this->print_promotions(); }; break; case 'mg': if(isset($_POST['edit_manager'])) { $this->editManager(); } else if(isset($_POST['delete_manager'])) { $this->deleteManager(); } else if(isset($_POST['add_manager'])) { $this->addManager(); } else { $this->showAddBotton(); $this->print_managers(); }; break; case 'un': $_SESSION["lastRol"] = $_SESSION["rol"]; //unset($_SESSION["rol"]); $_SESSION["rol"] = null; header("Location: {$_SERVER['PHP_SELF']}"); $_SESSION['message'] = "

¡ATENCIÓN!


Está viendo la web como un Usuario NO Registrado.

"; break; case 'ur': $_SESSION["lastRol"] = $_SESSION["rol"]; $_SESSION["rol"] = "user"; header("Location: {$_SERVER['PHP_SELF']}"); $_SESSION['message'] = "

¡ATENCIÓN!


Está viendo la web como un Usuario Registrado.

"; break; case 'ag': $_SESSION["lastRol"] = $_SESSION["rol"]; $_SESSION["rol"] = "manager"; header("Location: {$_SERVER['PHP_SELF']}"); $_SESSION['message'] = "

¡ATENCIÓN!


Está viendo la web como un Gerente.

"; break; default: echo '

Bienvenido al Panel de Administrador.


'."\n"; break; } } else { echo '

No tienes permiso de administrador.


Inicia Sesión con una cuenta de administtación.

'."\n"; } } function getTemplate(){ return $this->template; } //Functions FILMS function addFilm(){ include_once('./includes/formAddFilm.php'); $formAF = new formAddFilm(); $htmlAForm = $formAF->gestiona(); echo '
'.$htmlAForm.'
'."\n"; } function deleteFilm() { include_once('./includes/formDeleteFilm.php'); $formDF = new formDeleteFilm(); $htmlDForm = $formDF->gestiona(); echo '
'.$htmlDForm.'
'."\n"; } function editFilm() { include_once('./includes/formEditFilm.php'); $formEF = new formEditFilm(); $htmlDForm = $formEF->gestiona(); echo '
'.$htmlDForm.'
'."\n"; } //Functions Cinemas function addCinema(){ include_once('./includes/formAddCinema.php'); $formAC = new formAddCinema(); $htmlAForm = $formAC->gestiona(); echo '
'.$htmlAForm.'
'."\n"; } function deleteCinema() { include_once('./includes/formDeleteCinema.php'); $formDC = new formDeleteCinema(); $htmlDForm = $formDC->gestiona(); echo '
'.$htmlDForm.'
'."\n"; } function editCinema() { include_once('./includes/formEditCinema.php'); $formEC = new formEditCinema(); $htmlDForm = $formEC->gestiona(); echo '
'.$htmlDForm.'
'."\n"; } //Functions MANAGERS function print_managers(){ include_once('../assets/php/common/manager_dao.php'); include_once('../assets/php/common/manager.php'); $manager = new Manager_DAO("complucine"); $managers = $manager->allManagersData(); $ids = array(); $idscinemas = array(); $usernames = array(); $email = array(); $rol = array(); if(is_array($managers)){ foreach($managers as $key => $value){ $ids[$key] = $value->getId(); $idscinemas[$key] = $value->getIdcinema(); $usernames[$key] = $value->getUsername(); $email[$key] = $value->getEmail(); $rol[$key] = $value->getRoll(); } } echo "
"; if(is_array($managers)){ for($i = 0; $i < count($managers); $i++){ echo ' '; } } echo'
Id IdCinema Nombre Email Rol
'. $ids[$i] .' '. $idscinemas[$i] .' '. $usernames[$i] .' '. $email[$i] .' '. $rol[$i] .'
'; } function showAddBotton() { echo'

Añadir gerente

'; } function addManager(){ include_once('./includes/formAddManager.php'); $formAM = new formAddManager(); $htmlAForm = $formAM->gestiona(); echo '

AÑADIR GERENTE

'.$htmlAForm.'
'."\n"; } function editManager(){ include_once('./includes/formEditManager.php'); $formEM = new formEditManager(); $htmlEForm = $formEM->gestiona(); echo '

EDITAR GERENTE

'.$htmlEForm.'
'."\n"; } function deleteManager(){ include_once('./includes/formDeleteManager.php'); $formDM = new formDeleteManager(); $htmlDForm = $formDM->gestiona(); echo '

ELIMINAR GERENTE

'.$htmlDForm.'
'."\n"; } //Functions PROMOTIONS function addPromotion(){ include_once('./includes/formAddPromotion.php'); $formAP = new formAddPromotion(); $htmlAForm = $formAP->gestiona(); echo '

AÑADIR PROMOCIÓN

'.$htmlAForm.'
'."\n"; } function editPromotion(){ include_once('./includes/formEditPromotion.php'); $formEP = new formEditPromotion(); $htmlEForm = $formEP->gestiona(); echo '

EDITAR PROMOCIÓN

'.$htmlEForm.'
'."\n"; } function deletePromotion(){ include_once('./includes/formDeletePromotion.php'); $formDP = new formDeletePromotion(); $htmlDForm = $formDP->gestiona(); echo '

ELIMINAR PROMOCIÓN

'.$htmlDForm.'
'."\n"; } function print_promotions(){ $promo = new Promotion_DAO("complucine"); $promos = $promo->allPromotionData(); $ids = array(); $tittles = array(); $descriptions = array(); $codes = array(); $actives = array(); if(is_array($promos)){ foreach($promos as $key => $value){ $ids[$key] = $value->getId(); $tittles[$key] = $value->getTittle(); $descriptions[$key] = $value->getDescription(); $codes[$key] = $value->getCode(); $actives[$key] = $value->getActive(); } } echo "
"; if(is_array($promos)){ for($i = 0; $i < count($promos); $i++){ echo ' '; } } echo'
Id Título Descripcion Código Activo
'. $ids[$i] .' '. $tittles[$i] .' '. $descriptions[$i] .' '. $codes[$i] .' '. $actives[$i] .'
'; } } ?>