21 lines
364 B
PHP
21 lines
364 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
|
|
|
class ApiUserObjectDashlet extends Dashlet
|
|
{
|
|
protected $icon = 'lock-open-alt';
|
|
|
|
protected $requiredStats = array('apiuser');
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Api users');
|
|
}
|
|
|
|
public function getUrl()
|
|
{
|
|
return 'director/apiusers';
|
|
}
|
|
}
|