reply = array(); } //Methods: public function getReply() { if($this->correct){ if($this->option == "new"){ $this->reply = "

Operacion realizada con exito


Se ha aƱadido la sesion correctamente en la base de datos.

"; }else if($this->option == "edit"){ $this->reply = "

Operacion realizada con exito


Se ha editado la sesion correctamente en la base de datos.

"; }else if($this->option == "del"){ $this->reply = "

Operacion realizada con exito


Se ha eliminado la sesion correctamente en la base de datos.

"; }else if($this->option == "list"){ $this->reply = $this->sessions; } } else if($this->correct == false) { $this->reply = "

ERROR


Ha habido un error en la operacion. Revisa los datos introducidos o ponte en contacto con el administrador de la base de datos.

"; } return $this->reply; } public function processesForm($film, $hall, $cinema, $date, $start, $price, $format, $repeat, $option) { $this->option = $option; $this->correct = true; $bd = new sessionDAO('complucine'); if($bd ){ if($option == "list"){ $this->sessions = $bd->getAllSessionsFromACinemaHallDate($cinema, $hall, $date); }else { if($option == "new"){ $searchSession = $bd->searchSession($cinema, $hall, $start, $date); if($searchSession) { $this->correct = false; } else{ $bd->createSession(null,$film, $hall,$cinema, $date, $start, $price, $format); } } else if ($option == "del"){ $bd->deleteSession($hall, $cinema, $date, $start); } else if ($option == "edit"){ $bd->editSession($film, $hall, $cinema, $date, $start, $price, $format); } if($repeat > "0"){ $repeat--; $date = date('Y-m-d', strtotime( $date. ' +1 day') ); $this->processesForm($film, $hall, $cinema, $date, $start, $price, $format, $repeat, $option); } } } else {$this->correct = false;} } } ?>