mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-26 19:29:01 +02:00
18 lines
457 B
PHP
18 lines
457 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Web\Controller\SimpleController;
|
|
use Icinga\Module\Director\Web\Table\ServicesOnHostsTable;
|
|
|
|
class ServicetemplateController extends SimpleController
|
|
{
|
|
public function hostsAction()
|
|
{
|
|
$this->addSingleTab($this->translate('Hosts using this service Template'));
|
|
$this->content()->add(
|
|
new ServicesOnHostsTable($this->db())
|
|
);
|
|
}
|
|
}
|