Letzte Aktion ausführen.

Also habe jetzt deine Version gewählt, nur etwas abgeändert. Jedoch arbeite ich nicht mit header und die.

PHP:
		try {
			if ($this->isValidEvent()) {
				$this->logger->debug("Valid event");
			} else {
				$this->logger->debug("Invalid event. Not allowed to access the location [" . $this->params['location'] . "]", new Exception());
				$this->displayLastEvent();
			}

		//bla bla bla exception und co.

		//Execute all events of the locations.
		$this->designController->execute();

		//Display all locations.
		$this->designController->display();

Hier testet es ob der Event valid ist. Wenn ja, dann führe execute und display aus.
Wenn jedoch der Event invalid ist, dann führe displayLastEvent aus, welches nur den letzten Event anzeigt, jedoch nix ausführt...

Danke für den Gedankenanstoss :)

Gruss
X
 
Zurück