icingaweb2-module-director/application/controllers/CommandtemplateController.php

17 lines
401 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Objects\IcingaCommand;
use Icinga\Module\Director\Web\Controller\TemplateController;
class CommandtemplateController extends TemplateController
{
protected function requireTemplate()
{
return IcingaCommand::load([
'object_name' => $this->params->get('name')
], $this->db());
}
}