mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 01:04:09 +02:00
Replace icon comment w/ comment-empty
Signed-off-by: Eric Lippmann <eric.lippmann@icinga.com>
This commit is contained in:
parent
6695e437ab
commit
b722f6e178
@ -52,7 +52,7 @@ class CommentController extends Controller
|
|||||||
$this->getTabs()->add(
|
$this->getTabs()->add(
|
||||||
'comment',
|
'comment',
|
||||||
array(
|
array(
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'label' => $this->translate('Comment'),
|
'label' => $this->translate('Comment'),
|
||||||
'title' => $this->translate('Display detailed information about a comment.'),
|
'title' => $this->translate('Display detailed information about a comment.'),
|
||||||
'url' =>'monitoring/comments/show'
|
'url' =>'monitoring/comments/show'
|
||||||
|
@ -59,7 +59,7 @@ class CommentsController extends Controller
|
|||||||
$this->getTabs()->add(
|
$this->getTabs()->add(
|
||||||
'comments',
|
'comments',
|
||||||
array(
|
array(
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'label' => $this->translate('Comments') . sprintf(' (%d)', $query->count()),
|
'label' => $this->translate('Comments') . sprintf(' (%d)', $query->count()),
|
||||||
'title' => $this->translate(
|
'title' => $this->translate(
|
||||||
'Display detailed information about multiple comments.'
|
'Display detailed information about multiple comments.'
|
||||||
|
@ -63,8 +63,8 @@
|
|||||||
$addCommentLink,
|
$addCommentLink,
|
||||||
null,
|
null,
|
||||||
array(
|
array(
|
||||||
'icon' => 'comment',
|
'class' => 'action-link',
|
||||||
'class' => 'action-link'
|
'icon' => 'comment-empty'
|
||||||
)
|
)
|
||||||
) ?>
|
) ?>
|
||||||
</td>
|
</td>
|
||||||
|
@ -57,7 +57,7 @@ $lastDate = null;
|
|||||||
$stateName = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state);
|
$stateName = $isService ? Service::getStateText($event->state) : Host::getStateText($event->state);
|
||||||
break;
|
break;
|
||||||
case 'comment':
|
case 'comment':
|
||||||
$icon = 'comment';
|
$icon = 'comment-empty';
|
||||||
$iconTitle = $this->translate('Comment', 'tooltip');
|
$iconTitle = $this->translate('Comment', 'tooltip');
|
||||||
$label = $this->translate('COMMENT');
|
$label = $this->translate('COMMENT');
|
||||||
break;
|
break;
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
array(
|
array(
|
||||||
'class' => 'action-link',
|
'class' => 'action-link',
|
||||||
'data-base-target' => '_self',
|
'data-base-target' => '_self',
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'title' => $this->translate('Add a new comment to this host')
|
'title' => $this->translate('Add a new comment to this host')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -66,7 +66,7 @@
|
|||||||
array(
|
array(
|
||||||
'class' => 'action-link',
|
'class' => 'action-link',
|
||||||
'data-base-target' => '_self',
|
'data-base-target' => '_self',
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'title' => $this->translate('Add a new comment to this service')
|
'title' => $this->translate('Add a new comment to this service')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -62,8 +62,8 @@
|
|||||||
$addCommentLink,
|
$addCommentLink,
|
||||||
null,
|
null,
|
||||||
array(
|
array(
|
||||||
'icon' => 'comment',
|
'class' => 'action-link',
|
||||||
'class' => 'action-link'
|
'icon' => 'comment-empty'
|
||||||
)
|
)
|
||||||
) ?>
|
) ?>
|
||||||
</td>
|
</td>
|
||||||
|
@ -10,7 +10,7 @@ if ($this->hasPermission('monitoring/command/comment/add')) {
|
|||||||
array(
|
array(
|
||||||
'class' => 'action-link',
|
'class' => 'action-link',
|
||||||
'data-base-target' => '_self',
|
'data-base-target' => '_self',
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'title' => $this->translate('Add a new comment to this host')
|
'title' => $this->translate('Add a new comment to this host')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -22,7 +22,7 @@ if ($this->hasPermission('monitoring/command/comment/add')) {
|
|||||||
array(
|
array(
|
||||||
'class' => 'action-link',
|
'class' => 'action-link',
|
||||||
'data-base-target' => '_self',
|
'data-base-target' => '_self',
|
||||||
'icon' => 'comment',
|
'icon' => 'comment-empty',
|
||||||
'title' => $this->translate('Add a new comment to this service')
|
'title' => $this->translate('Add a new comment to this service')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user