state = $panel;
            $this->login= $login;
        }
        function showPanel($template) {
            if($this->login){
                switch($this->state) {
                    case 'mc': if(isset($_POST['edit_cinema'])) {
                        $this->editCinema();
                    }
                    else if(isset($_POST['delete_cinema'])) {
                        $this->deleteCinema();
                    }
                    else if(isset($_POST['add_cinema'])) {
                        $this->addCinema();
                        $template->print_cinemas();
                    }                               
                    else {
                        $this-> addCinema();
                        $template->print_cinemas();
                    
                    };  
                    break;
                    case 'mf': if(isset($_POST['edit_film'])) {
                                $this->editFilm();
                            }
                            else if(isset($_POST['delete_film'])) {
                                $this->deleteFilm();
                            }
                            else if(isset($_POST['add_film'])) {
                                $this->addFilm();
                                $template->print_fimls();
                            }
                            else {
                                $this->addFilm();
                                $template->print_fimls();
                            };  
                    break;
                    case 'mp': require_once('manage_promotions.php');
                                if(isset($_POST['edit_promotion'])) {
                                    editPromotion();
                                }
                                else if(isset($_POST['delete_promotion'])) {
                                    deletePromotion();
                                }
                                else if(isset($_POST['add_promotion'])) {
                                    confirmAdd();
                                }
                                else if(isset($_POST['confirm_delete_promotion'])) {
                                    confirmDelete();
                                }
                                else if(isset($_POST['confirm_edit_promotion'])) {
                                    confirmEdit();
                                }
                                else {
                                    addPromotion();
                                    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': echo"
En construcción
"; break;
                    case 'ur': echo"En construcción
";; break;
                    case 'ag': echo"En construcción
";; break;
                    default: echo "BIENVENIDO AL PANEL DE ADMINISTRADOR
"; break;
                }
            }
            else {
                echo "NO TIENES PERMISOS DE ADMINISTRADOR
";
            }
        }
        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/formEditFilm.php');
            $formEF = 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();
    
            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 "
                
                
                    
                    
                    
                        | Id | 
                        IdCinema | 
                        Nombre | 
                        Email | 
                        password | 
                        Rol | 
                    
                    
                    
                    "; 
            for($i = 0; $i < count($managers); $i++){
                echo '
                        | '. $ids[$i] .' | 
                        '. $idscinemas[$i] .' | 
                        '. $usernames[$i] .' | 
                        '. $email[$i] .' | 
                        '. $rol[$i] .' | 
                        
                             
                         |  
                         
                             
                         |  
                    
                    '; 
            } 
            echo'
                    
                 
                
            ';
        }
        function showAddBotton() {
            echo'
                    
                 ';
        }
        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";
        }
    }
   
?>