24 lines
620 B
PHP
Executable File
24 lines
620 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* CodeIgniter resolves PageNotFoundException to this file (see ExceptionHandler::determineView).
|
|
* Delegate to the NHance branded page at Views/errors/404.php.
|
|
*/
|
|
|
|
$page_name = $page_name ?? 'NHance';
|
|
|
|
if (ENVIRONMENT === 'production') {
|
|
$displayMessage = lang('Errors.sorryCannotFind');
|
|
if ($displayMessage === '') {
|
|
$displayMessage = "Sorry, the page you're looking for doesn't exist or has been moved.";
|
|
}
|
|
} else {
|
|
$displayMessage = nl2br(esc($message ?? ''));
|
|
}
|
|
|
|
$message = $displayMessage;
|
|
|
|
include dirname(__DIR__) . DIRECTORY_SEPARATOR . '404.php';
|