TYPO3 proxy extension for showing content of another system inside TYPO3

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 3

Type:typo3-cms-extension

12.0.0 2023-10-04 09:44 UTC

This package is auto-updated.

Last update: 2024-04-12 20:37:02 UTC


README

Proxy extension for embedding external HTML sources. You can integrate your own filters to optimize the output.

Screenshot

Installation

  • Only composer mode is supported

How to integrate your own filters

You can integrate your own filters to optimize the output. The filter must extend the WapplerSystems\Proxy\Plugin\AbstractPlugin and must be registered in the ext_localconf.php of your extension.

Example:

if (!isset($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['proxy']['plugins'])) {
    $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['proxy']['plugins'] = [];
}
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['proxy']['plugins'] = array_merge($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['proxy']['plugins'],[
  'WebhelpPlugin' => WebhelpPlugin::class,
  'RevitPlugin' => RevitPlugin::class,
  'AutocadPlugin' => AutocadPlugin::class,
]);