From 6bea9e8b43c0e569135b1b104420249f03f71d90 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sun, 9 Mar 2014 12:10:05 +0100 Subject: [PATCH] Style comment list --- .../views/scripts/list/comments.phtml | 185 +++++++----------- 1 file changed, 69 insertions(+), 116 deletions(-) diff --git a/modules/monitoring/application/views/scripts/list/comments.phtml b/modules/monitoring/application/views/scripts/list/comments.phtml index 746dd0cfe..7689cbd09 100644 --- a/modules/monitoring/application/views/scripts/list/comments.phtml +++ b/modules/monitoring/application/views/scripts/list/comments.phtml @@ -1,136 +1,89 @@ -getHelper('DateFormat'); -$commandHelper = $this->getHelper('CommandForm'); -$viewHelper = $this->getHelper('MonitoringState'); - -?>
tabs ?> sortControl->render($this); ?> paginationControl($comments, null, null, array('preserve' => $this->preserve)); ?>
-
-comment_objecttype_id === '1') ? 'host' : 'service'; - $objectName = ($objectType === 'host') ? $comment->host_name : $comment->service_name; - $hrefParameters = array( - $objectType => $objectName, - 'comment_id' => $comment->comment_id +$cf = $this->getHelper('CommandForm'); + +foreach ($comments as $comment): + + $objectType = (int) $comment->comment_objecttype_id === 1 ? 'host' : 'service'; + +?> + + + + - - - - - - -
+ comment_type) { + case 'flapping': + $icon = 'flapping'; + $tooltip = 'Comment was caused by a flapping host or service.'; + break; + case 'comment': + $icon = 'user'; + $tooltip = 'Comment was created by an user.'; + break; + case 'downtime': + $icon = 'down'; + $tooltip = 'Comment was caused by a downtime.'; + case 'ack': + $icon = 'acknowledgement'; + $tooltip = 'Comment was caused by an acknowledgement.'; + } + ?> + icon($icon . '.png', $tooltip) ?>
+ timeSince($comment->comment_timestamp) ?> +
+ icon('service.png', 'Service comment') ?> qlink( + $comment->service_name, + 'monitoring/show/service', + array( + 'host' => $comment->host_name, + 'service' => $comment->service_name, + ) + ) ?> onicon('host.png', 'Host comment') ?> qlink( + $comment->service_name, + 'monitoring/show/host', + array( + 'host' => $comment->host_name + ) + ) ?> by escape($comment->comment_author) ?>
+ escape($comment->comment_data) ?>
+ comment_is_persistent): ?>Comment is persistent
+ Expires: comment_expiration_timestamp) ? + $this->timeUnless($comment->comment_expiration_timestamp) : + 'Never' + ?> +
+ $comment->comment_id, + 'host' => $comment->host_name ); + if ($objectType === 'service') { - $hrefParameters['host'] = $comment->host_name; + $data['service'] = $comment->service_name; } - $detailLink = $this->href( - 'monitoring/show/' . $objectType, - $hrefParameters + echo $cf->iconSubmitForm( + 'img/icons/remove.png', + 'Remove comment', + 'link-like', + 'removecomment', + $data ); - $hostLink = $this->href( - 'monitoring/show/host', - array( - 'host' => $comment->host_name - ) - ); - ?> -
- comment_timestamp); ?> +?> - comment_objecttype_id === '1'): ?> - icon('host.png', 'Host comment') ?> - comment_objecttype_id === '2'): ?> - icon('service.png', 'Service comment') ?> - - - comment_type) { - case 'flapping': - $icon = 'flapping'; - $tooltip = 'Comment was caused by a flapping host or service.'; - break; - case 'comment': - $icon = 'user'; - $tooltip = 'Comment was created by an user.'; - break; - case 'downtime': - $icon = 'down'; - $tooltip = 'Comment was caused by a downtime.'; - case 'ack': - $icon = 'acknowledgement'; - $tooltip = 'Comment was caused by an acknowledgement.'; - } - ?> - icon($icon . '.png', $tooltip) ?> - - - - -
- - - service_name): ?> - - service_name ?> - on - host_name; ?> - - - - host_name; ?> - - - - by - comment_author; ?> -
- comment_data; ?> -
- - - - Persists: comment_is_persistent === '1') ? 'Yes' : 'No'; ?> - - - Expires: comment_expiration_timestamp) ? - 'at ' . date('d.m H:i', $comment->comment_expiration_timestamp) : - 'Never'; - ?> - - - -
- $comment->comment_id, - 'host' => $comment->host_name - ); - - if ($objectType === 'service') { - $data['service'] = $comment->service_name; - } - - echo $commandHelper->iconSubmitForm( - 'img/icons/remove.png', - 'Remove comment', - 'btn-small', - 'removecomment', - $data - ); - ?> -