2017 © Pedro Peláez
 

symfony-bundle matomo-bundle

This bundle provides matomo functions.

image

shapecode/matomo-bundle

This bundle provides matomo functions.

  • Sunday, July 1, 2018
  • by Nicklog
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

ShapecodeMatomoBundle

A Symfony2 Bundle that helps you to use the Matomo Open Analytics Platform with your project., (*1)

It contains a Twig function that can insert the tracking code into your website. Plus, you can turn it off with a simple configuration switch so you don't track your dev environment., (*2)

Installation

Simply add the following to your composer.json (see http://getcomposer.org/):, (*3)

"require": {
    "shapecode/matomo-bundle": "~1.0"
}

And enable the bundle in app/AppKernel.php:, (*4)

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Shapecode\Bundle\MatomoBundle\ShapecodeMatomoBundle(),
    );
}

Usage

Somewhere in your views, right before the closing </body> tag, insert, (*5)

{{ matomo() }}

This will add the appropriate Matomo tracking code as described in the API reference., (*6)

You have the ability to change the config on the fly if it necessary, (*7)

{{ matomo({
    site_id: 1,
    host_name: 'my.matomo.hostname'
    host_path: '/sub_directory/',
    no_script_tracking: false
}) }}

Configuration

You can configure the bundle in your config.yml. Full Example:, (*8)

shapecode_matomo:
    site_id: 1                      # required, no default. site id from matomo tool
    disabled: %kernel.debug%        # not required, default %kernel.debug%. Usually, you only want to include the tracking code in a production environment
    host_name: my.matomo.hostname    # required. no default. Hostname to the matomo instance.
    host_path: "/sub_directory/"    # not required, default null. Path to the tracking script on the host.
    no_script_tracking: true        # not required, default true. Enables Image-Tracking if JavaScript is disabeld.

Copyright 2017 shapecode. Code released under the MIT license., (*9)

Original script from http://www.webfactory.de, (*10)

The Versions