app->l11nManager, $request, $response); $view->setTemplate('/Modules/Notification/Theme/Backend/notification-dashboard'); return $view; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function viewDashboard(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface { $view = new View($this->app->l11nManager, $request, $response); $view->setTemplate('/Modules/Notification/Theme/Backend/dashboard-notification'); $notifications = []; $view->data['notifications'] = $notifications; return $view; } }