Make the about page pretty

refs #9247
This commit is contained in:
Johannes Meyer 2015-09-30 17:07:55 +02:00
parent 142851ede7
commit c2ac841871
4 changed files with 144 additions and 61 deletions

View File

@ -3,16 +3,23 @@
namespace Icinga\Controllers;
use Icinga\Application\Version;
use Icinga\Web\Controller\ActionController;
use Icinga\Application\Icinga;
use Icinga\Application\Version;
use Icinga\Web\Controller;
class AboutController extends ActionController
class AboutController extends Controller
{
public function indexAction()
{
$this->view->hasPermission = $this->hasPermission('config/modules');
$this->view->version = Version::get();
$this->view->modules = Icinga::app()->getModuleManager()->getLoadedModules();
$this->view->tabs = $this->getTabs()->add(
'about',
array(
'label' => $this->translate('About'),
'title' => $this->translate('About Icinga Web 2'),
'url' => 'about'
)
)->activate('about');
}
}

View File

@ -1,37 +1,103 @@
<div class="content">
<h1>Icinga Web 2</h1>
<?php
$versionInfo = array();
foreach (array(
'appVersion' => $this->translate('Version: %s'),
'gitCommitID' => $this->translate('Git commit ID: %s'),
'gitCommitDate' => $this->translate('Git commit date: %s')
) as $key => $label) {
if (array_key_exists($key, $version) && null !== ($value = $version[$key])) {
$versionInfo[] = sprintf($label, htmlspecialchars($value));
}
}
?>
<p><?= implode('<br>', $versionInfo) ?></p>
<p>Copyright &copy; 2013-2015&emsp;<a href="https://www.icinga.org"><?=
$this->translate('The Icinga Project')
?></a><br><?= $this->translate('License: GNU GPL v2 or later') ?></p>
<p><a href="https://dev.icinga.org/projects/icingaweb2"><?=
$this->translate('Report a bug')
?></a>&emsp;<a href="https://www.icinga.org/services/support/"><?=
$this->translate('Support')
?></a>&emsp;<a href="https://wiki.icinga.org/dashboard.action"><?=
$this->translate('Icinga Wiki')
?></a>&emsp;<a href="http://docs.icinga.org/"><?=
$this->translate('Icinga Documentation')
?></a><br><a href="https://twitter.com/icinga"><?=
$this->translate('Icinga on Twitter')
?></a>&emsp;<a href="https://www.facebook.com/icinga"><?=
$this->translate('Icinga on Facebook')
?></a></p>
<h1><?= $this->translate('Loaded modules') ?></h1>
<table class="action alternating" data-base-target="_next">
<div class="controls">
<?= $tabs; ?>
</div>
<div class="content about">
<?= $this->img(
'img/logo_icinga_big_dark.png',
null,
array(
'width' => 400,
'class' => 'about-logo'
)
); ?>
<p class="about-version">
<?php if (isset($version['appVersion'])): ?>
<strong><?= $this->translate('Version'); ?>:</strong> <?= $this->escape($version['appVersion']); ?>
<?php endif ?>
<?php if (isset($version['gitCommitID'])): ?>
<br>
<strong><?= $this->translate('Git commit ID'); ?>:</strong> <?= $this->escape($version['gitCommitID']); ?>
<?php endif ?>
<?php if (isset($version['gitCommitDate'])): ?>
<br>
<strong><?= $this->translate('Git commit date'); ?>:</strong> <?= $this->escape($version['gitCommitDate']); ?>
<?php endif ?>
</p>
<p class="about-license">
<strong><?= $this->translate('Copyright'); ?></strong>: &copy; 2013-<?= date('Y'); ?> <?= $this->qlink(
$this->translate('The Icinga Project'),
'https://www.icinga.org',
null,
array(
'target' => '_blank'
)
); ?>
<br>
<strong><?= $this->translate('License'); ?></strong>: GNU GPL v2+
</p>
<p class="about-social">
<?= $this->qlink(
null,
'https://www.twitter.com/icinga',
null,
array(
'target' => '_blank',
'icon' => 'host',//'twitter',
'title' => $this->translate('Icinga on Twitter')
)
); ?> <?= $this->qlink(
null,
'https://www.facebook.com/icinga',
null,
array(
'target' => '_blank',
'icon' => 'service',//'facebook-squared',
'title' => $this->translate('Icinga on Facebook')
)
); ?>
</p>
<div class="about-urls">
<div><?= $this->qlink(
null,
'https://dev.icinga.org/projects/icingaweb2',
null,
array(
'target' => '_blank',
'img' => 'img/bugreport.png',
'title' => $this->translate('Report a bug')
)
); ?> <?= $this->qlink(
null,
'https://www.icinga.org/services/support',
null,
array(
'target' => '_blank',
'img' => 'img/support.png',
'title' => $this->translate('Support / Mailinglists')
)
); ?></div>
<div><?= $this->qlink(
null,
'https://wiki.icinga.org',
null,
array(
'target' => '_blank',
'img' => 'img/wiki.png',
'title' => $this->translate('Icinga Wiki')
)
); ?> <?= $this->qlink(
null,
'https://docs.icinga.org/',
null,
array(
'target' => '_blank',
'img' => 'img/docs.png',
'title' => $this->translate('Icinga Documentation')
)
); ?></div>
</div>
<h2><?= $this->translate('Loaded modules') ?></h2>
<table class="action alternating about-modules" data-base-target="_next">
<thead>
<tr>
<th><?= $this->translate('Name') ?></th>
@ -39,20 +105,24 @@
</tr>
</thead>
<tbody>
<?php
foreach ($modules as $module) {
$name = $module->getName();
?>
<?php foreach ($modules as $module): ?>
<tr>
<td><?= $hasPermission ? $this->qlink(
$name,
<td>
<?php if ($this->hasPermission('config/modules')): ?>
<?= $this->qlink(
$module->getName(),
'config/module/',
array('name' => $name),
array('title' => sprintf($this->translate('Show the overview of the %s module'), $name))
) : $name ?></td>
<td><?= $module->getVersion() ?></td>
array('name' => $module->getName()),
array('title' => sprintf($this->translate('Show the overview of the %s module'), $module->getName()))
); ?>
<?php else: ?>
<?= $this->escape($module->getName()); ?>
<?php endif ?>
<td>
<?= $this->escape($module->getVersion()); ?>
</td>
</tr>
<?php } ?>
<?php endforeach ?>
</tbody>
</table>
</div>

View File

@ -29,7 +29,8 @@ class StyleSheet
'css/icinga/selection-toolbar.less',
'css/icinga/login.less',
'css/icinga/logo.less',
'css/icinga/controls.less'
'css/icinga/controls.less',
'css/icinga/about.less'
);
public static function compileForPdf()

View File

@ -43,6 +43,11 @@ $this->addHelperFunction('qlink', function ($title, $url, $params = null, $prope
$icon = $view->icon($properties['icon']);
unset($properties['icon']);
}
if (array_key_exists('img', $properties)) {
$icon = $view->img($properties['img']);
unset($properties['img']);
}
}
return sprintf(