flowpack/entity-usage

Provides an entity usage registration for Neos Flow

Installs: 13 527

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 12

Forks: 0

Open Issues: 0

Type:neos-package

1.1.0 2022-06-24 10:02 UTC

This package is auto-updated.

Last update: 2024-04-24 14:10:22 UTC


README

Concept

This package provides a generic usage tracking for any kind of entity in a Neos Flow application. An additional package like Flowpack.EntityUsage.DatabaseStorage is required for storing those relations.

For each kind of entity a package needs to provide the mechanisms to register and unregister usage. F.e. Flowpack.Neos.AssetUsage provides this for assets in Neos CMS.

Creating your own entity storage

My.Package:MyEntityUsageService:
    className: Flowpack\EntityUsage\Servce\EntityUsageService
    scope: singleton
    arguments:
        1:
            value: 'my_service_id'

Related packages