protected void processTemplate(Request request, Template template) throws RedirectException {
super.processTemplate(request, template);
String notificationId = request.getHttpRequest().getPartAsStringFailsafe("notification", 36);
- Notification notification = webInterface.getCore().getNotifications().getNotification(notificationId);
+ Notification notification = webInterface.getNotifications().getNotification(notificationId);
if ((notification != null) && notification.isDismissable()) {
- webInterface.getCore().getNotifications().removeNotification(notification);
+ notification.dismiss();
}
String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64);
throw new RedirectException(returnPage);
@Override
protected JsonObject createJsonObject(Request request) {
String notificationId = request.getHttpRequest().getParam("notification");
- Notification notification = webInterface.getCore().getNotifications().getNotification(notificationId);
+ Notification notification = webInterface.getNotifications().getNotification(notificationId);
if (notification == null) {
return createErrorJsonObject("invalid-notification-id");
}
if (!notification.isDismissable()) {
return createErrorJsonObject("not-dismissable");
}
- webInterface.getCore().getNotifications().removeNotification(notification);
+ notification.dismiss();
return createSuccessJsonObject();
}
<%/if>
<div id="notification-area">
- <%foreach webInterface.core.notifications.all notification>
+ <%foreach webInterface.notifications.all notification>
<div class="notification" id="<% notification.id|html>">
<%if notification.dismissable>
<form class="dismiss" action="dismissNotification.html" method="post">