Dashlet: provide new summary text helpers
This commit is contained in:
parent
34be3801ce
commit
f614d75edc
|
@ -178,6 +178,55 @@ abstract class Dashlet
|
||||||
return $this->view->translate($msg);
|
return $this->view->translate($msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getStats($type, $name = null)
|
||||||
|
{
|
||||||
|
if ($name === null) {
|
||||||
|
return $this->stats[$type];
|
||||||
|
} else {
|
||||||
|
return $this->stats[$type]->{'cnt_' . $name};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getTemplateSummaryText($type)
|
||||||
|
{
|
||||||
|
$view = $this->view;
|
||||||
|
$stat = $this->stats[$type];
|
||||||
|
$cnt = (int) $this->stats[$type]->cnt_template;
|
||||||
|
|
||||||
|
if ($cnt === 0) {
|
||||||
|
return $view->translate('No template has been defined yet');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($cnt === 1) {
|
||||||
|
return $view->translate('One template has been defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
return sprintf(
|
||||||
|
$view->translate('%d templates have been defined'),
|
||||||
|
$cnt
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getApplySummaryText($type)
|
||||||
|
{
|
||||||
|
$view = $this->view;
|
||||||
|
$stat = $this->stats[$type];
|
||||||
|
$cnt = (int) $this->stats[$type]->cnt_apply;
|
||||||
|
|
||||||
|
if ($cnt === 0) {
|
||||||
|
return $view->translate('No apply rule has been defined yet');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($cnt === 1) {
|
||||||
|
return $view->translate('One apply rule has been defined');
|
||||||
|
}
|
||||||
|
|
||||||
|
return sprintf(
|
||||||
|
$view->translate('%d apply rules have been defined'),
|
||||||
|
$cnt
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
protected function statSummary($type)
|
protected function statSummary($type)
|
||||||
{
|
{
|
||||||
$view = $this->view;
|
$view = $this->view;
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
|
||||||
|
|
||||||
class NotificationObjectDashlet extends Dashlet
|
|
||||||
{
|
|
||||||
protected $icon = 'megaphone';
|
|
||||||
|
|
||||||
protected $requiredStats = array('notification');
|
|
||||||
|
|
||||||
public function getTitle()
|
|
||||||
{
|
|
||||||
return $this->translate('Notifications.');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getSummary()
|
|
||||||
{
|
|
||||||
return $this->translate('Schedule your notifications.')
|
|
||||||
. ' ' . parent::getSummary();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getUrl()
|
|
||||||
{
|
|
||||||
return 'director/notifications';
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
||||||
|
|
||||||
|
class NotificationsDashlet extends Dashlet
|
||||||
|
{
|
||||||
|
protected $icon = 'megaphone';
|
||||||
|
|
||||||
|
protected $requiredStats = array('notification');
|
||||||
|
|
||||||
|
public function getTitle()
|
||||||
|
{
|
||||||
|
return $this->translate('Notifications');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSummary()
|
||||||
|
{
|
||||||
|
return $this->translate(
|
||||||
|
'Schedule your notifications. Define who should be notified, when,'
|
||||||
|
. ' and for which kind of problem'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getUrl()
|
||||||
|
{
|
||||||
|
return 'director/dashboard?name=notifications';
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue