parent
b240e0e6bb
commit
5a49c0beed
|
@ -4,6 +4,7 @@
|
|||
namespace Icinga\Controllers;
|
||||
|
||||
use Exception;
|
||||
use Icinga\Application\Version;
|
||||
use InvalidArgumentException;
|
||||
use Icinga\Application\Config;
|
||||
use Icinga\Application\Icinga;
|
||||
|
@ -122,6 +123,7 @@ class ConfigController extends Controller
|
|||
|
||||
$this->view->module = $module;
|
||||
$this->view->tabs = $module->getConfigTabs()->activate('info');
|
||||
$this->view->moduleGitCommitId = Version::getGitHead($module->getBaseDir());
|
||||
} else {
|
||||
$this->view->module = false;
|
||||
$this->view->tabs = null;
|
||||
|
|
|
@ -37,7 +37,14 @@
|
|||
</td>
|
||||
<tr>
|
||||
<th><?= $this->escape($this->translate('Version')) ?></th>
|
||||
<td><?= $this->escape($module->getVersion()) ?></td></tr>
|
||||
<td><?= $this->escape($module->getVersion()) ?></td>
|
||||
</tr>
|
||||
<?php if (isset($moduleGitCommitId) && $moduleGitCommitId !== false): ?>
|
||||
<tr>
|
||||
<th><?= $this->escape($this->translate('Git commit')) ?></th>
|
||||
<td><?= $this->escape($moduleGitCommitId) ?></td>
|
||||
</tr>
|
||||
<?php endif ?>
|
||||
<tr>
|
||||
<th><?= $this->escape($this->translate('Description')) ?></th>
|
||||
<td><?= nl2br($this->escape($module->getDescription())) ?></td>
|
||||
|
|
Loading…
Reference in New Issue