https://github.com/wapplersystems/t3-proxy
TYPO3 proxy extension
https://github.com/wapplersystems/t3-proxy
typo3 typo3-cms-extension typo3-extension
Last synced: 3 months ago
JSON representation
TYPO3 proxy extension
- Host: GitHub
- URL: https://github.com/wapplersystems/t3-proxy
- Owner: WapplerSystems
- Created: 2022-09-27T14:20:30.000Z (almost 3 years ago)
- Default Branch: release/v12
- Last Pushed: 2025-02-11T12:46:49.000Z (5 months ago)
- Last Synced: 2025-04-30T22:16:16.272Z (3 months ago)
- Topics: typo3, typo3-cms-extension, typo3-extension
- Language: PHP
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# proxy - TYPO3 Extension
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:
```php
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,
]);
```