1 | <?php |
||
21 | class GoogleTagManagerHelper extends Helper implements GoogleTagManagerHelperInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var GoogleTagManagerInterface |
||
25 | */ |
||
26 | private $service; |
||
27 | |||
28 | /** |
||
29 | * @param GoogleTagManagerInterface $service |
||
30 | */ |
||
31 | public function __construct(GoogleTagManagerInterface $service) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function isEnabled() |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function getId() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function getData() |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function hasData() |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function getPush() |
||
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | public function getName() |
||
83 | } |
||
84 |