basilicom/pimcore-plugin-services-dashboards

This plugin adds a new menu under >Extras< and allows you to integrate your own service dashboards, such as >Supervisor<, into the backend. The service dashboard is then displayed in an iframe panel within the Pimcore admin interface.

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:pimcore-bundle

pkg:composer/basilicom/pimcore-plugin-services-dashboards

v1.0.1 2025-12-04 08:27 UTC

This package is auto-updated.

Last update: 2025-12-04 08:29:16 UTC


README

This plugin adds a new menu under Extras and allows you to integrate your own service dashboards, such as Supervisor, into the backend. The service dashboard is then displayed in an iframe panel within the Pimcore admin interface.

Admin Screen

Version information

Bundle Version PHP Pimcore
1.0 ^8.3 ^11.0

Installation

composer require basilicom/pimcore-plugin-services-dashboards

Activate Plugin

Add to \App\Kernel.php

public function registerBundlesToCollection(BundleCollection $collection)
{
    // ...
    $collection->addBundle(new PimcorePluginServicesDashboardsBundle());
    // ...
}

Build Assets

bin/console assets:install --symlink --relative

Add config

pimcore_plugin_services_dashboards:
    navigation_name: Services Dashboards
    services:
        Monit: "/service-url"
        Supervisor: "/service-url"