Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). UI Patterns (SDC in Drupal UI) 2.0.18 Minor update available for module ui_patterns (2.0.18). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

This module provides an API to push events to your Google Tag Manager data layer directly from PHP. It allows you to trigger events with custom data after a page loads, enabling richer tracking of user interactions.

INTRODUCTION

The Google Tag Manager: Events module provides API to push events
to GTM Datalayer from PHP.

REQUIREMENTS

This module requires Google Tag module.

2.x supports Google Tag 8.x-1.x only.
3.x supports Google Tag 2.0.x only.

INSTALLATION

Install as you would normally install a contributed Drupal module. Visit:
https://www.drupal.org/docs/extending-drupal/installing-modules
for further information.

CONFIGURATION

To push the events via Google Tag Manager: Events module you must
configure at least one GTM container.

FOR DEVELOPERS

You can see gtm_events_test module for usage examples.

The goal

You can push an event directly from PHP code. It means that event will
be pushed after page loading in browser.

How to push event

To push event you can use 'google_tag_events' service.

google_tag_events_service()->setEvent(
  'some_event_name',
  [
    'event' => 'some_event_name'
    'foo' => 'bar'
  ]
);

After this code executing will be pushed event like

dataLayer.push({
  'event': 'some_event_name',
  'foo': 'bar'
});

Debug mode

You can test GTM events pushing without any configured GTM containers.
Just enable debug mode on config page /admin/config/system/google-tag/events/settings.

How to check

You can use recommended browser extensions to check datalayer:

Event plugin

You can incapsulate the event data preparation code to event plugin.
Plugin must be placed into
tests/modules/gtm_events_test/src/Plugin/google_tag_event directory.

For example:

/**
 * Node node page visit GTM event plugin.
 *
 * @Plugin(
 *   id = "example_event_node_view",
 *   label = @Translation("Node page visit event")
 * )
 */
class ExampleEventNodeView extends GoogleTagEventsPluginBase {

  /**
   * {@inheritdoc}
   */
  public function process(array $data = NULL) {
    $data = $data ?? $this->data;

    $event_data = [
      'event' => 'node_view',
      'title' => $data['node']->getTitle(),
    ];

    return $event_data;
  }

}

Then call the service

/**
 * Implements hook_entity_view().
 */
function comment_entity_view(
    array &$build,
    EntityInterface $entity,
    EntityViewDisplayInterface $display,
    $view_mode
  ) {
  if ($entity instanceof NodeInterface) {
    google_tag_events_service()->setEvent(
      'example_event_node_view',
      ['node' => $entity]
    );
  }
}

The result of this code will be

dataLayer.push({
  'event': 'node_view',
  'title': 'Some node title'
});

A plugin name must match with event name to call plugin's process method.

MAINTAINERS

Activity

Total releases
3
First release
Jun 2025
Latest release
2 weeks ago
Releases (12 mo)
2 ▲ from 1
Maintenance
Active

Release Timeline

Releases

Version Type Release date
4.x-dev Dev Jul 1, 2026
3.2.0 Stable Jul 1, 2026
3.1.0 Stable Jun 4, 2025