wapplersystems / proxy
TYPO3 proxy extension for showing content of another system inside TYPO3
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 3
Type:typo3-cms-extension
Requires
- ext-curl: *
- typo3/cms-core: ^12
- wapplersystems/php-html-parser: ^1
This package is auto-updated.
Last update: 2024-10-29 15:41:16 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, ]);