mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Make messaging more consistent with the generic 404.php template. Refactor (clarity/modernize). Signed-off-by: Josh <josh.t.richards@gmail.com>
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
/** @var array $_ */
|
|
/** @var \OCP\IL10N $l */
|
|
/** @var \OCP\Defaults $theme */
|
|
|
|
// @codeCoverageIgnoreStart
|
|
if (!isset($_)) {
|
|
// Standalone access is not supported; redirect to the root.
|
|
require_once '../../../lib/base.php';
|
|
|
|
$urlGenerator = \OCP\Server::get(\OCP\IURLGenerator::class);
|
|
header('Location: ' . $urlGenerator->getAbsoluteURL('/'));
|
|
exit;
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
$urlGenerator = \OCP\Server::get(\OCP\IURLGenerator::class);
|
|
$backUrl = $urlGenerator->linkTo('', 'index.php');
|
|
?>
|
|
|
|
<?php if (isset($_['content'])): ?>
|
|
<?php print_unescaped($_['content']); ?>
|
|
<?php else: ?>
|
|
<div class="body-login-container update">
|
|
<div class="icon-big icon-error"></div>
|
|
<h2><?php p($l->t('Profile not found')); ?></h2>
|
|
<p class="infogroup"><?php p($l->t('The profile does not exist or is unavailable.')); ?></p>
|
|
<p>
|
|
<a class="button primary" href="<?php p($backUrl); ?>">
|
|
<?php p($l->t('Back to %s', [$theme->getName()])); ?>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<?php endif; ?>
|