kgaut / pushover
Pushover integration
2.0.x-dev
2022-02-28 15:52 UTC
This package is auto-updated.
Last update: 2026-03-01 00:38:03 UTC
README
This is a Drupal 8 and 9 module that allows you to send push notification through Pushover service.
Code Sample
Signature
\Drupal::service('pushover.sender')->sendNotification($title, $message, $url = NULL, $url_title = NULL);
Simple example
\Drupal::service('pushover.sender')->sendNotification('Test config', 'Hello world !');
Full example
\Drupal::service('pushover.sender')->sendNotification($title, $description, $url, $url_label);
Module download
This module is not (yet ?) on drupal.org, but you can download it with composer :
composer config repositories.drupal-pushover vcs https://github.com/kgaut/drupal-pushover
composer require drupal/pushover