-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathoverview.php
More file actions
28 lines (24 loc) · 715 Bytes
/
overview.php
File metadata and controls
28 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/** @var \OCP\IL10N $l */
/** @var array $_ */
/** @var \OCP\Defaults $theme */
$baseUrl = $theme->getBaseUrl();
$versionLabel = $_['version'] ?? '';
?>
<div id="vue-admin-settings-setup-checks"></div>
<div id="version" class="section">
<!-- should be the last part, so Updater can follow if enabled (it has no heading therefore). -->
<h2><?php p($l->t('Version')); ?></h2>
<p>
<strong>
<a href="<?php print_unescaped($baseUrl); ?>" rel="noreferrer noopener" target="_blank">
Nextcloud Hub 26 Winter
</a>
(<?php p($versionLabel); ?>)
</strong>
</p>
</div>