Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function renderTracker(array $options = []): string |
||
46 | { |
||
47 | $data = array_merge([ |
||
48 | 'site_id' => null, |
||
49 | 'matomo_host' => 'localhost', |
||
50 | 'cookie_domain' => null, |
||
51 | ], $options); |
||
52 | |||
53 | if (null === $data['site_id']) { |
||
54 | return ''; |
||
55 | } |
||
56 | |||
57 | return $this->environment->render('@Core23Matomo/tracker_code.html.twig', $data); |
||
58 | } |
||
59 | } |
||
60 |