-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathFlocOptOutHeader.php
49 lines (37 loc) · 998 Bytes
/
FlocOptOutHeader.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
declare(strict_types=1);
namespace Bolt\Widget;
use Bolt\Extension\ExtensionInterface;
use Bolt\Widget\Injector\RequestZone;
use Bolt\Widget\Injector\Target;
class FlocOptOutHeader extends BaseWidget implements WidgetInterface, ResponseAwareInterface
{
use ResponseTrait;
/** @var ExtensionInterface */
protected $extension;
public function __invoke(array $params = []): ?string
{
$this->getResponse()->headers->set('permissions-policy', 'interest-cohort=()', false);
return null;
}
public function getName(): string
{
return 'FLoC Opt-Out Header';
}
public function getTargets(): array
{
return [Target::NOWHERE];
}
public function getPriority(): int
{
return 0;
}
public function getZone(): string
{
return RequestZone::FRONTEND;
}
public function injectExtension(ExtensionInterface $extension): void
{
$this->extension = $extension;
}
}