Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wapplersystems/t3-proxy

TYPO3 proxy extension
https://github.com/wapplersystems/t3-proxy

typo3 typo3-cms-extension typo3-extension

Last synced: 19 days ago
JSON representation

TYPO3 proxy extension

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
![](./Documentation/Images/plugin.png)

# 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,
]);
```