Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
/ status_report Public archive

Drupal module to support checking the status of third party dependencies.

Notifications You must be signed in to change notification settings

AlexSkrypnyk/status_report

Repository files navigation

Status Report Drupal module

Drupal module to provide API integration report.

CircleCI

screenshot

Why?

If your module provides a 3rd party integration and you want to know that connection is configured correctly, this module allows to see all the response information in within a single page.

You may also implement status check for any other Drupal module that does not have such information page.

Features

  • Single page for all status checks.
  • <iframe>-based status checks (useful for SSO with redirects).

Getting started

  1. Implement hook_status_report_handlers() to specify your status class.
  2. Extend StatusReport class with your 3rd-party endpoint request methods.
  3. Go to /admin/reports/integration-status-report to check the status.

Refer to status_report.api.php for implementation example.