Kuestenschmiede / PwaBundle

Adds PWA functionality to a contao application.
https://con4gis.org
9 stars 1 forks source link
con4gis contao-bundle

con4gis-PwaBundle

Overview

Turn your Contao Website into a progressive web app. The con4gis-PwaBundle provides everything you need for basic PWA functionality, including generating a service worker script and a manifest file.

Features include:

Installation

Via composer:

composer require con4gis/pwa

Alternatively, you can use the Contao Manager to install the con4gis-PwaBundle.

Requirements

Usage

This bundles provides two front end modules for contao:

PWA module (add manifest)

Creates the required HTML code to load the manifest file and the service worker. Can be included anywhere on the page since it contains no visible elements by itself.

Push subscription button

Creates the button to subscribe to push notifications as well as loading the javascript needed to handle the subscription. The button comes unstyled, but can be accessed via the "btn-push-subscribe"-ID for individual styling.

Sending a notification

There are three different ways to send push notifications with this bundle:

To send a notification in one of your scripts, you have to create a PushNotificationEvent and use the Symfony event dispatcher.

// get the event dispatcher
$eventDispatcher = $this->eventDispatcher;
// instantiate event
$event = new PushNotificationEvent();
// this sends the notification to every subscribed user. You can send a notification to only one subscription, too
$event->setSendToAll(true);
// set message contents
$event->setTitle($title);
$event->setMessage($content);
// dispatch the event
$eventDispatcher->dispatch($event::NAME, $event);

Documentation

Visit docs.con4gis.org for a user documentation. You can also contact us via the support forum there.