forked from cydrobolt/polr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
42 lines (41 loc) · 1.77 KB
/
about.php
File metadata and controls
42 lines (41 loc) · 1.77 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
@(include('config.php')) or header('Location:setup.php');
require_once 'layout-headermd.php';
require_once('version.php');
?>
<?php
require_once('lib-core.php');
if (isset($_SESSION['role']) && $_SESSION['role'] == "adm") {
echo "
<h1>About Polr</h1>
<br>
<dl>Build Information
<dt>Version: $version
<dt>Release date: $reldate
<dt>App Build : $wsn by $wsa on $wsb <dt>
</dl>You are seeing the information above because you are logged in as an Administrator.<br />";
}
?>
<br><p><?php echo $wsn;?> is powered by Polr, an open source, minimalist link shortening platform. Learn more at <a href='https://github.com/Cydrobolt/polr'>its Github page</a> or its <a href="//project.polr.me">project site</a>.
<br>Polr is licensed under the GNU GPL License.</p>
<div style="font-size: 70%; padding-top: 40px">
The GNU General Public License v3
<br>
Copyright (C) 2013-2015 Chaoyi Zha, the Polr Project
<br />
This program is free software: you can redistribute it and/or modify<br />
it under the terms of the GNU General Public License as published by<br />
the Free Software Foundation, either version 3 of the License, or<br />
(at your option) any later version.<br />
<br />
This program is distributed in the hope that it will be useful,<br />
but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br />
GNU General Public License for more details.<br />
<br />
You should have received a copy of the GNU General Public License<br />
along with this program. If not, see <a href='http://www.gnu.org/copyleft/gpl.html'>http://www.gnu.org/copyleft/gpl.html</a>.
</div>
<?php
require_once 'layout-footermd.php';
?>