The GoogleTagManagerBundle provides you an easy-to-use method to integrate the Google Tag Manager into your Symfony 2 application.
Note: This Bundle is still in development. Feel free to report encountered issues!
- PHP 5.3 and higher
- Symfony 2.0 and higher
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require xynnn/google-tag-manager-bundle "~1.0"
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Then, enable the bundle by adding the following line in the app/AppKernel.php
file of your project:
<?php
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Xynnn\GoogleTagManagerBundle\GoogleTagManagerBundle(),
);
// ...
}
// ...
}
Add the configuration to your yaml file. Please don't forget to adjust your Google Tag Manager Id.
Insert the ViewHelper into your layout file to enable the Google Tag Manager. Please be aware to insert into right after the HTML body tag!
<body>
{{ google_tag_manager() }}
...
</body>
If you want to send some information to the Google Tag Manager, you can use the dataLayer.
/** @var GoogleTagManager $manager */
$manager = $this->get('google_tag_manager');
$manager->addData('example', 'value');
google_tag_manager:
enabled: true
id: "GTM-XXXXXX"
autoAppend: true|false
Philipp Bräutigam
Copyright (c) 2015 Philipp Bräutigam This repository is released under the GNU LGPL v3.0 license.