Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wapplersystems/t3-proxy
- Owner: WapplerSystems
- Created: 2022-09-27T14:20:30.000Z (over 2 years ago)
- Default Branch: release/v12
- Last Pushed: 2024-07-29T15:07:38.000Z (5 months ago)
- Last Synced: 2024-12-01T05:06:29.551Z (28 days ago)
- Topics: typo3, typo3-cms-extension, typo3-extension
- Language: PHP
- Homepage:
- Size: 130 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
![](./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,
]);
```