Bienvenido '.$name.' a tu Panel de Manager. 
                     
                    Usuario: '.$name.'
					Cine: '.$cinema.'
                    Espero que estes pasando un buen dia
                '."\n";
				
			return $panel;
        }
		
		static function success(){
            $panel = '
                    Operacion completada. 
                     
                    '.$_SESSION['msg'].'
                 '."\n";
			$_SESSION['msg'] = "";
			
			return $panel;
        }
		
		static function manage_halls(){
			$panel = '
';
			return $panel;
        }
		
		static function new_hall(){		
			$data = array("option" => "new_hall", "cols" => $_POST["cols"], "rows" => $_POST["rows"]);
			$panel = 'Crear una sala.  
					'. FormHall::generaCampoFormulario($data, null);
			
			return $panel;
		}
		
		static function edit_hall(){		
			$data = array("option" => "edit_hall", "number" => $_POST["number"],"cols" => $_POST["cols"], "rows" => $_POST["rows"], "seats" => $_POST["seats"]);
			$panel = 'Editar una sala.  
					'. FormHall::generaCampoFormulario($data, null);
			
			return $panel;
		}
		
		static function manage_sessions(){
			//Base filtering values
			$date = isset($_POST['date']) ? $_POST['date'] : date("Y-m-d");
			$hall = isset($_POST['hall']) ? $_POST['hall'] : "1";
			
			//Session filter
			$panel='
				
					 
					';
						
			foreach(Hall::getListHalls($_SESSION["cinema"]) as $hll){
				if($hll->getNumber() == $hall){
					$panel.= '
						 Sala '. $hll->getNumber() .'  ';
				}else{ 
					$panel.= '
						 Sala '. $hll->getNumber() .' ';
				}
			}
			$panel.='
					 
					 
				 
			
			';
			//Session list
			$panel .='';
			$sessions = Session::getListSessions($hall,$_SESSION["cinema"],$date);
			
			if($sessions) {
				$panel .='
				
					
				 ';
			} else {
				$panel.=' 
 No hay ninguna sesion  ';
			}
			$panel.='
				
 
			 
';
			
			return $panel;
        }
		
		static function new_session(){	
			echo "inicio";
			if(isset($_POST["new_session"])){
				
				$data = array("option" => "new_session","hall" => $_POST['hall'],"cinema" => $_SESSION["cinema"],"date" => $_POST['date']);
				
			}else if(isset($_POST["select_film"])){
				
				$film = array("idfilm" => $_POST["id"],"tittle" => $_POST["tittle"], "description" => $_POST["description"], "duration" => $_POST["duration"]);
				$data = array("option" => "new_session","hall" => $_POST['hall'],"cinema" => $_SESSION["cinema"],"date" => $_POST['date'],"film" => $film, "start" => $_POST['start']
					, "price" => $_POST['price'], "format" => $_POST['format']);
			}
			
			if($data){
				$panel = 'Crear una sesión.  
				'.FormSession::generaCampoFormulario($data, null);
			}else $panel = self::warning();
			
			return $panel;
		}
		
		static function edit_session(){	
			if(isset($_POST["edit_session"])){
				
				$_SESSION["or_hall"] = "";
				$_SESSION["or_date"] = "";
				$_SESSION["or_start"] = "";
		
				$film = Session::getThisSessionFilm($_POST["film"]);
				$data = array("option" => "edit_session","hall" => $_POST["hall"],"cinema" => $_SESSION["cinema"],"date" => $_POST['date'],"film" => $film,
					"start" => $_POST['start'],"price" => $_POST['price'],"format" => $_POST['format']);
					
			}else if(isset($_SESSION["session"])){
				$film = array("idfilm" => $_POST["id"],"tittle" => $_POST["tittle"], "description" => $_POST["description"], "duration" => $_POST["duration"]);
				$data = array("option" => "edit_session","hall" => $_POST['hall'],"cinema" => $_SESSION["cinema"],"date" => $_POST['date'],"film" => $film, "start" => $_POST['start']
					, "price" => $_POST['price'], "format" => $_POST['format']);
			}
			
			if($data){
				$panel = 'Editar una sesión.  
				'.FormSession::generaCampoFormulario($data, null);
			} else $panel = self::warning();
			return $panel;
		}
		
		static function select_film($template){		
			if(isset($_GET["option"])){
				$_SESSION["option"] = $_GET["option"];
				$panel = 'Seleccionar Pelicula.  ';
				$panel .= $template->print_fimls();
				$_SESSION["option"] = "";
			} else $panel = self::warning();
			
			return $panel;
		}
		
		//Funcion que se envia cuando hay inconsistencia en el panel manager, principalmente por tocar cosas con la ulr
		static function warning(){
			$panel = '
                    No deberias poder acceder aqui. 
                     
                     No uses la url para toquitear cosas >.< 
                 '."\n";
				
			return $panel;
		}
		
	
    }
?>