2013-06-27 13:13:31 +02:00
|
|
|
<?php if (! empty($this->contacts)): ?>
|
2013-06-27 10:14:41 +02:00
|
|
|
<?
|
|
|
|
$list = array();
|
|
|
|
foreach ($this->contacts as $contact) {
|
|
|
|
$list[] = $this->qlink($contact->contact_alias, 'monitoring/show/contact', array(
|
|
|
|
'contact_name' => $contact->contact_name
|
|
|
|
));
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<b>Contacts:</b> <?= implode(', ', $list) ?><br />
|
2013-06-27 13:13:31 +02:00
|
|
|
<?php endif; ?>
|
2013-06-27 10:14:41 +02:00
|
|
|
|
2013-06-27 13:13:31 +02:00
|
|
|
<?php if (! empty($this->contactgroups)): ?>
|
2013-06-27 10:14:41 +02:00
|
|
|
<?
|
|
|
|
$list = array();
|
|
|
|
foreach ($this->contactgroups as $contactgroup) {
|
|
|
|
$list[] = $this->qlink($contactgroup->contactgroup_alias, 'monitoring/show/contactgroup', array(
|
|
|
|
'contactgroup_name' => $contactgroup->contactgroup_name
|
|
|
|
));
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<b>Contactgroups:</b> <?= implode(', ', $list) ?><br />
|
2013-06-27 13:13:31 +02:00
|
|
|
<?php endif; ?>
|
2013-06-27 10:14:41 +02:00
|
|
|
|