PHPackages                             madj2k/t3-copyright-guardian - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. madj2k/t3-copyright-guardian

ActiveTypo3-cms-extension[Image &amp; Media](/categories/media)

madj2k/t3-copyright-guardian
============================

Manages the copyright details of images and other media and offers a convienient way of displaying these automatically and directly on the page on which the media is used. In addition, a list of all media used and the associated copyright information can be output

v13.4.12-stable(11mo ago)05942GPL-2.0+PHPPHP &gt;=7.4

Since May 9Pushed 11mo ago3 watchersCompare

[ Source](https://github.com/skroggel/t3-copyright-guardian)[ Packagist](https://packagist.org/packages/madj2k/t3-copyright-guardian)[ Docs](https://www.steffenkroggel.de)[ RSS](/packages/madj2k-t3-copyright-guardian/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (1)Dependencies (2)Versions (25)Used By (2)

Copyright Guardian
==================

[](#copyright-guardian)

This extension manages the copyright details of images and other media and offers a convienient way of displaying these automatically and directly on the page on which the media is used. In addition, a list of all media used and the associated copyright information can be output.

Functions in a nutshell:

- Maintain copyright information easily and centrally in the backend
- Add picture agencies as data records
- Automatic output of copyright information in the title of the media files used
- Output of a list of all media files used in a page with complete copyright information
- Media files inherited from parent pages are also taken into account
- Works with pages-table, tt\_content-table and EXT:news and can be customized via TypoScript

Installation
------------

[](#installation)

Just install the extension and include the typoscript.

Configuration
-------------

[](#configuration)

You should create a system-folder in which you create data records for media sources (propably mostly agencies). For each uploaded file you can then add a creator and select the corresponding media source using the meta-information of the file in the backend.

If you use a file with added copyright information, this information will be automatically added to the title of the file when rendered in the frontend. This way the copyright information is always visible when hovering over the media file.

You can also add a plugin to the footer of the page which renders a complete list of all media used on the page with all relevant copyright information. This also works for media that is inherited from a parent page.

It is also possible to use this plugin as USER-Object:

```
lib.siteDefault {

    mediaSources = USER
    mediaSources {
        userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
        extensionName = CopyrightGuardian
        pluginName = MediaSource
        vendorName = Madj2k
        controller = MediaSource
        switchableControllerActions {
        // Again: Controller-Name and Action
            MediaSource {
                1 = list
            }
        }

        view =< plugin.copyrightguardian.view
        persistence =< plugin.copyrightguardian.persistence
        settings =< plugin.copyrightguardian.settings
    }
}

```

Migration from core\_extended
=============================

[](#migration-from-core_extended)

The functionality of this extension was a part of EXT:core\_extended before. It has been moved in order to have a cleaner separation of functionality. The code has also been refactored and improved.

To migrate the relevant database records from EXT:core\_extended to this extension execute the following queries in your database:

```
INSERT INTO tx_copyrightguardian_domain_model_mediasource (uid, pid, tstamp, crdate, cruser_id, deleted, hidden, starttime, endtime, sys_language_uid, l10n_parent, l10n_state, l10n_diffsource, t3ver_oid, t3ver_wsid, t3ver_state, t3ver_stage, t3ver_count, t3ver_tstamp, t3ver_move_id, name, url, internal) SELECT uid, pid, tstamp, crdate, cruser_id, deleted, hidden, starttime, endtime, sys_language_uid, l10n_parent, l10n_state, l10n_diffsource, t3ver_oid, t3ver_wsid, t3ver_state, t3ver_stage, t3ver_count, t3ver_tstamp, t3ver_move_id, name, url, internal FROM tx_coreextended_domain_model_mediasources;
UPDATE sys_file_metadata SET tx_copyrightguardian_source = tx_coreextended_source, tx_copyrightguardian_creator = tx_coreextended_publisher WHERE 1 = 1;

```

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance50

Moderate activity, may be stable

Popularity15

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~21 days

Recently: every ~13 days

Total

21

Last Release

357d ago

Major Versions

v12.4.9-stable → v13.4.0-stable2025-02-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca11ace9490b8fe0b145e7d32464fba5c8eddaa88d700b95d32241a226623e76?d=identicon)[SteffenKroggel](/maintainers/SteffenKroggel)

---

Top Contributors

[![skroggel](https://avatars.githubusercontent.com/u/8121847?v=4)](https://github.com/skroggel "skroggel (47 commits)")[![addorange](https://avatars.githubusercontent.com/u/1980618?v=4)](https://github.com/addorange "addorange (4 commits)")

---

Tags

imagesmediaTYPO3 CMScopyrightCopyright-Manager

### Embed Badge

![Health badge](/badges/madj2k-t3-copyright-guardian/health.svg)

```
[![Health](https://phpackages.com/badges/madj2k-t3-copyright-guardian/health.svg)](https://phpackages.com/packages/madj2k-t3-copyright-guardian)
```

###  Alternatives

[causal/extractor

This extension detects and extracts metadata (EXIF / IPTC / XMP / ...) from potentially thousand different file types (such as MS Word/Powerpoint/Excel documents, PDF and images) and bring them automatically and natively to TYPO3 when uploading assets. Works with built-in PHP functions but takes advantage of Apache Tika and other external tools for enhanced metadata extraction.

16256.1k](/packages/causal-extractor)[moc/imageoptimizer

Flow package that optimizes generated thumbnail images (jpg, png, gif, svg) for web presentation.

30108.6k](/packages/moc-imageoptimizer)[fab/media-upload

Fluid widget for mass uploading files on the Frontend using HTML5 techniques powered by Fine Uploader - http://fineuploader.com/

1927.9k1](/packages/fab-media-upload)[silvanite/nova-field-cloudinary

A Laravel Nova Image Field with Flysystem Adapter for storing and retrieving media from Cloudinary

2772.3k3](/packages/silvanite-nova-field-cloudinary)[blueways/bw-focuspoint-images

Image Editor for adding focus points to images

12109.0k2](/packages/blueways-bw-focuspoint-images)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
