PHP code example of setono / consent-contracts
1. Go to this page and download the library: Download setono/consent-contracts 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/ */
setono / consent-contracts example snippets
use Setono\Consent\Consents;
use Setono\Consent\ConsentCheckerInterface;
final class YourService
{
private ConsentCheckerInterface $consentChecker;
public function __construct(ConsentCheckerInterface $consentChecker)
{
$this->consentChecker = $consentChecker;
}
public function __invoke()
{
if ($this->consentChecker->isGranted(Consents::CONSENT_MARKETING)) {
// marketing consent is granted, and you can set your marketing related cookie ;)
}
}
}