PHP code example of wapplersystems / proxy

1. Go to this page and download the library: Download wapplersystems/proxy library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

wapplersystems / proxy example snippets


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