ideative/stock-pictures

Allows backend users to select stock pictures from various online services

Installs: 2 528

Dependents: 2

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 2

Open Issues: 1

Type:typo3-cms-extension

12.0.2 2024-04-03 15:39 UTC

This package is auto-updated.

Last update: 2024-04-03 15:41:12 UTC


README

This extension provides a base for connecting Stock picture services to the TYPO3 backend. For each connected service, a "Add media from XXX" button will be added in Media files.

To get started quickly, you can use one of the following extensions :

Installation

Install this extension via composer require ideative/stock-pictures or download it from the TYPO3 Extension Repository and activate the extension in the Extension Manager of your TYPO3 installation.

Registering a new stock picture service

$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['id_stock_pictures'['connectors']['myservice'] = \Acme\MyExtension\Connector\MyServiceConnector::class

Your connector class must implement the Ideative\IdStockPictures\ConnectorInterface interface. Checkout the class documentation to understand the purpose of each interface method.

Take the ShutterStockConnector from EXT:id_shutterstock_connector as a kickstart.

Disabling a stock picture service for a specific table/field

Each specific service can be manually disabled for a specific table and field, using TSConfig. This will hide the "Add media from XXX" button in this specific field.

TCEFORM {
    tx_myextension_tablename {
        my_fieldname {
            tx_idstockpictures {
                connectors {
                    shutterstock.enabled = 0
                    unsplash.enabled = 0
                    ...
                }
            }
        }
    }