nhance/app/Views/errors/html/error_404.php
2026-05-05 12:20:10 +05:30

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';