mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
parent
9793bd52c7
commit
3a74ec3d09
@ -4,9 +4,12 @@ if (! empty($object->contacts)) {
|
|||||||
|
|
||||||
$list = array();
|
$list = array();
|
||||||
foreach ($object->contacts as $contact) {
|
foreach ($object->contacts as $contact) {
|
||||||
$list[] = $this->qlink($contact->contact_alias, 'monitoring/show/contact', array(
|
$list[] = $this->qlink(
|
||||||
'contact' => $contact->contact_name
|
$contact->contact_alias,
|
||||||
));
|
'monitoring/show/contact',
|
||||||
|
array('contact' => $contact->contact_name),
|
||||||
|
array('title' => sprintf($this->translate('Show detailed information about %s'), $contact->contact_alias))
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf(
|
printf(
|
||||||
@ -24,7 +27,8 @@ if (! empty($object->contactgroups)) {
|
|||||||
$list[] = $this->qlink(
|
$list[] = $this->qlink(
|
||||||
$contactgroup->contactgroup_alias,
|
$contactgroup->contactgroup_alias,
|
||||||
'monitoring/list/contactgroups',
|
'monitoring/list/contactgroups',
|
||||||
array('contactgroup' => $contactgroup->contactgroup_name)
|
array('contactgroup' => $contactgroup->contactgroup_name),
|
||||||
|
array('title' => sprintf($this->translate('List contacts in contact-group "%s"'), $contactgroup->contactgroup_alias))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user