diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-12 09:52:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-12 09:52:00 -0500 |
commit | b061945f0e716a026fe722d5f0ba04f86982d3fc (patch) | |
tree | 6dd41cc43967d2cb6dfbcaf3ded878f1702a0638 /app/Template/config/about.php | |
parent | 241ca53e4705c389b40c3a133727a2833085ae28 (diff) |
Show server configuration in settings page
Diffstat (limited to 'app/Template/config/about.php')
-rw-r--r-- | app/Template/config/about.php | 48 |
1 files changed, 38 insertions, 10 deletions
diff --git a/app/Template/config/about.php b/app/Template/config/about.php index 75d1320e..5c1f4b39 100644 --- a/app/Template/config/about.php +++ b/app/Template/config/about.php @@ -8,10 +8,6 @@ <a href="http://kanboard.net/" target="_blank" rel="noreferer">http://kanboard.net/</a> </li> <li> - <?= t('Application version:') ?> - <strong><?= APP_VERSION ?></strong> - </li> - <li> <?= t('Author:') ?> <strong>Frédéric Guillot</strong> (<a href="https://github.com/fguillot/kanboard/blob/master/CONTRIBUTORS.md" target="_blank"><?= t('contributors') ?></a>) </li> @@ -23,15 +19,47 @@ </div> <div class="page-header"> - <h2><?= t('Database') ?></h2> + <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><?= $this->text->e(DB_DRIVER) ?></strong> + <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> - <?php if (DB_DRIVER === 'sqlite'): ?> + </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> @@ -44,9 +72,9 @@ <?= $this->url->link(t('Optimize the database'), 'config', 'optimizeDb', array(), true) ?> <?= t('(VACUUM command)') ?> </li> - <?php endif ?> - </ul> -</div> + </ul> + </div> +<?php endif ?> <?= $this->render('config/keyboard_shortcuts') ?> |