mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-02-20 00:10:09 -05:00
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Icingadb\ProvidedHook;
|
|
|
|
use Icinga\Authentication\Auth;
|
|
use Icinga\Module\Icingadb\Hook\ServicesDetailExtensionHook;
|
|
use ipl\Html\Html;
|
|
use ipl\Html\HtmlDocument;
|
|
use ipl\Html\ValidHtml;
|
|
use ipl\I18n\Translation;
|
|
use ipl\Orm\Query;
|
|
use ipl\Web\Filter\QueryString;
|
|
use ipl\Web\Url;
|
|
use ipl\Web\Widget\Link;
|
|
|
|
class CreateServicesSlaReport extends ServicesDetailExtensionHook
|
|
{
|
|
use Translation;
|
|
|
|
public function getHtmlForObjects(Query $services): ValidHtml
|
|
{
|
|
if (Auth::getInstance()->hasPermission('reporting/reports')) {
|
|
$filter = QueryString::render($this->getBaseFilter());
|
|
return (new HtmlDocument())
|
|
->addHtml(Html::tag('h2', $this->translate('Reporting')))
|
|
->addHtml(new Link(
|
|
$this->translate('Create Service SLA Report'),
|
|
Url::fromPath('reporting/reports/new')->addParams(['filter' => $filter, 'report' => 'service']),
|
|
[
|
|
'data-icinga-modal' => true,
|
|
'data-no-icinga-ajax' => true
|
|
]
|
|
));
|
|
}
|
|
|
|
return new HtmlDocument();
|
|
}
|
|
}
|