icingaweb2-module-businessp.../application/controllers/HostController.php
Alexander A. Klimov 3985f67fe7 Fix "Host not found" error
refs #147
2019-02-18 13:54:39 +01:00

24 lines
643 B
PHP

<?php
namespace Icinga\Module\Businessprocess\Controllers;
use Icinga\Module\Monitoring\Controller;
use Icinga\Web\Url;
class HostController extends Controller
{
public function showAction()
{
$host = $this->params->getRequired('host');
$query = $this->backend->select()
->from('hoststatus', array('host_name'))
->where('host_name', $host);
if ($this->applyRestriction('monitoring/filter/objects', $query)->fetchRow() !== false) {
$this->redirectNow(Url::fromPath('monitoring/host/show')->setParams($this->params));
}
$this->view->host = $host;
}
}