2015-06-02 16:43:32 +02:00
|
|
|
<?php
|
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
|
|
|
|
# namespace Icinga\Application\Controllers;
|
|
|
|
|
|
|
|
use Icinga\Web\Controller\ActionController;
|
2015-06-05 10:18:24 +02:00
|
|
|
use Icinga\Application\Version;
|
2015-06-02 16:43:32 +02:00
|
|
|
|
|
|
|
class AboutController extends ActionController
|
|
|
|
{
|
|
|
|
public function indexAction()
|
|
|
|
{
|
2015-06-03 14:40:58 +02:00
|
|
|
$this->view->version = Version::get();
|
2015-06-02 16:43:32 +02:00
|
|
|
}
|
|
|
|
}
|