icingaweb2-module-director/library/Director/Dashboard/Dashlet/ZoneObjectDashlet.php

21 lines
343 B
PHP

<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class ZoneObjectDashlet extends Dashlet
{
protected $icon = 'globe';
protected $requiredStats = array('zone');
public function getTitle()
{
return $this->translate('Zones');
}
public function getUrl()
{
return 'director/zones';
}
}