ImageCopyright 

Extension Key

image_copyright

Version

12.4

Language

en

Copyright

2020

Author

Carsten CarstenWalther

Email

walther.carsten@web.de

License

This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml

Rendered

Thu, 05 Feb 2026 08:34:27 +0000

TYPO3

The content of this document is related to TYPO3 CMS, a GNU/GPL CMS/Framework available from typo3.org .

Community Documentation:

This documentation is community documentation for the TYPO3 extension html2pdf Extension

It is maintained as part of this third party extension.

If you find an error or something is missing, please: Report a Problem

Sitemap:

Sitemap

Users Manual 

Target group: Editors/Users

To display all images of your site, you have to add the image_copyright plugin.

Plugin

Plugin

Installation 

Target group: Administrators

The extension needs to be installed as any other extension of TYPO3 CMS:

Latest version from git 

You can get the latest version from git by using the git command:

git clone git@github.com:carsten-walther/image_copyright.git
Copied!

Preparation: Include static TypoScript 

You have to include the TypoScript statics to use this extension.

Configuration 

Target group: Developers, Integrators

You can set global copyright informations by typoscript.

To get all images of your page, you hafe to set the table field configuration and/or the table field configuration for collections.

Typical Configuration 

Example of TypoScript Configuration (Constants):

plugin.tx_imagecopyright {
    settings {
        extensions = jpg, jpeg, png, gif
        showEmpty = 1
        includeFileCollections = 1
        globalCopyright = Example Company
    }
}
Copied!

Example of TypoScript Configuration (Setup):

plugin.tx_imagecopyright {
    settings {
        tableFieldConfiguration {
            10 {
                extension = core
                tableName = pages
            }
            20 {
                extension = core
                tableName = tt_content
            }
            30 {
                extension = news
                tableName = tx_news_domain_model_news
            }
        }
        tableFieldConfigurationForCollections {
            10 {
                extension = core
                tableName = tt_content
                fieldName = file_collections
            }
        }
    }
}
Copied!

To-Do list 

Some things on the roadmap:

  • ...

Sitemap