duckydan / drupal-pushover
Pushover integration
Package info
github.com/duckydan/drupal-pushover
Type:drupal-module
pkg:composer/duckydan/drupal-pushover
dev-8.x-1.x
2019-12-12 15:12 UTC
This package is not auto-updated.
Last update: 2026-03-28 22:58:17 UTC
README
This is a Drupal 8 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