PHP code example of hofff / contao-consent-bridge
1. Go to this page and download the library: Download hofff/contao-consent-bridge 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/ */
hofff / contao-consent-bridge example snippets
namespace Your\Bundle;
use Hofff\Contao\Consent\Bridge\Bridge;
use Hofff\Contao\Consent\Bridge\Bridge\Plugin;
use Hofff\Contao\Consent\Bridge\Render\RenderInformation;
class MyPlugin implements \Hofff\Contao\Consent\Bridge\Plugin
{
public function load(Bridge $bridge): void
{
$bridge->supportFrontendModule('custom_1', RenderInformation::autoRenderWithoutPlaceholder());
$bridge->supportFrontendModule('custom_2', RenderInformation::autoRenderWithPlaceholder('custom_placeholder_template'));
$bridge->supportFrontendModule('custom_3', RenderInformation::customRender());
$bridge->supportContentElement('custom_1', RenderInformation::autoRenderWithoutPlaceholder());
$bridge->supportContentElement('custom_2', RenderInformation::autoRenderWithPlaceholder('custom_placeholder_template'));
$bridge->supportContentElement('custom_3', RenderInformation::customRender());
}
}