jambagecom/transactor

This is a basic API to develop extensions which connect to different payment transaction gateways.

Installs: 96

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Type:typo3-cms-extension

v0.11.1 2024-10-23 14:24 UTC

This package is auto-updated.

Last update: 2024-10-23 14:38:25 UTC


README

The extension transactor has the purpose to enable online payments connecting to various gateways.

Installation Requirement

Some extensions might need the old API which has however been removed in version 0.11.0.

Since version 0.9.0 the transactor extension contains a middleware, which payment extensions can use for dealing with a gateway instant message after the payment.

Use the transactor parameter as transactor=mygateway in the backend url to your payment extension page.

Your extension`s ext_localconf.php file must configure the middleware in TYPO3 10+:

$GLOBALS['TYPO3_CONF_VARS']['FE']['transactor_include']['mygateway'] =  \Foo\Bar\Controller\ServerResponseController::class . '::processRequest';

Then your class ServerResponseController can receive the calls from the instant messages from your gateway.