2015-06-30 11:19:31 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-20 22:34:04 +02:00
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
|
2015-06-30 11:19:31 +02:00
|
|
|
use Icinga\Module\Director\Web\Controller\ObjectsController;
|
|
|
|
|
2015-10-20 22:34:04 +02:00
|
|
|
class ServicegroupsController extends ObjectsController
|
2015-06-30 11:19:31 +02:00
|
|
|
{
|
2016-09-08 10:25:35 +02:00
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
parent::init();
|
|
|
|
$this->view->tabs->remove('objects');
|
|
|
|
}
|
2015-06-30 11:19:31 +02:00
|
|
|
}
|