blob: 8d5a575d7cfde2f3e6811928c7caaba632c60d7d (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<div class="page-header">
<h2><?= t('About') ?></h2>
</div>
<div class="listing">
<ul>
<li>
<?= t('Official website:') ?>
<a href="https://kanboard.net/" target="_blank" rel="noreferer">https://kanboard.net/</a>
</li>
<li>
<?= t('Author:') ?>
<strong>Frédéric Guillot</strong> (<a href="https://github.com/kanboard/kanboard/blob/master/CONTRIBUTORS.md" target="_blank"><?= t('contributors') ?></a>)
</li>
<li>
<?= t('License:') ?>
<strong>MIT</strong>
</li>
</ul>
</div>
<div class="page-header">
<h2><?= t('Configuration') ?></h2>
</div>
<div class="listing">
<ul>
<li>
<?= t('Application version:') ?>
<strong><?= APP_VERSION ?></strong>
</li>
<li>
<?= t('PHP version:') ?>
<strong><?= PHP_VERSION ?></strong>
</li>
<li>
<?= t('PHP SAPI:') ?>
<strong><?= PHP_SAPI ?></strong>
</li>
<li>
<?= t('OS version:') ?>
<strong><?= php_uname('s').' '.php_uname('r') ?></strong>
</li>
<li>
<?= t('Database driver:') ?>
<strong><?= DB_DRIVER ?></strong>
</li>
<li>
<?= t('Database version:') ?>
<strong><?= $this->text->e($db_version) ?></strong>
</li>
<li>
<?= t('Browser:') ?>
<strong><?= $this->text->e($user_agent) ?></strong>
</li>
</ul>
</div>
<?php if (DB_DRIVER === 'sqlite'): ?>
<div class="page-header">
<h2><?= t('Database') ?></h2>
</div>
<div class="listing">
<ul>
<li>
<?= t('Database size:') ?>
<strong><?= $this->text->bytes($db_size) ?></strong>
</li>
<li>
<?= $this->url->link(t('Download the database'), 'ConfigController', 'downloadDb', array(), true) ?>
<?= t('(Gzip compressed Sqlite file)') ?>
</li>
<li>
<?= $this->url->link(t('Optimize the database'), 'ConfigController', 'optimizeDb', array(), true) ?>
<?= t('(VACUUM command)') ?>
</li>
</ul>
</div>
<?php endif ?>
<?= $this->render('config/keyboard_shortcuts') ?>
<div class="page-header">
<h2><?= t('License') ?></h2>
</div>
<div class="listing">
<?= nl2br(file_get_contents(ROOT_DIR.DIRECTORY_SEPARATOR.'LICENSE')) ?>
</div>
|