Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marcus-at-localhost/f7c82f5ae7a3da9c1754636180d1ff76 to your computer and use it in GitHub Desktop.
Save marcus-at-localhost/f7c82f5ae7a3da9c1754636180d1ff76 to your computer and use it in GitHub Desktop.
Show Error Page in Controller.md

#kirby #php

<?php

return function ($page, $pages, $kirby, $site) {
	/**
	 * Don't show old applications
	 */
	if ( $page->dateFrom()->toDate() > time() || $page->dateTo()->toDate() < time()) {
		Header::notfound(true);
		echo $site->errorPage()->render();
		exit;
	}

	return $form;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment