exs/lander-tracking-chaturbate-bundle

This bundle adds a new Chaturbate's specific extracter and formatter for EXSLanderTrackingChaturbateBundle.

v1.1.3 2017-12-13 16:29 UTC

This package is auto-updated.

Last update: 2024-04-29 03:44:30 UTC


README

Build Status

What is this bundle doing ?

This bundle is not a standalone bundle and requires EXS-LanderTrackingHouseBundle.

It will add an extracter and a formatter to be added to EXS-LanderTrackingHouseBundle to manage Chaturbate tracking parameter.

The extracter service searches for parameters :

  • track which contains a string composed of either {cmp}~{exid}~{visit} or {cmp}~{exid} or {cmp}.

The formatter service will add the parameters if :

  • track will contains a string composed of either {cmp}~{exid}~{visit} or {cmp}~{exid} or {cmp}.

Installation

Download the bundle using composer

$ composer require exs/lander-tracking-chaturbate-bundle

Enable the bundle, and the EXS-LanderTrackingHouseBundle that is installed as a requirement.

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new EXS\LanderTrackingHouseBundle\EXSLanderTrackingHouseBundle(),
        new EXS\LanderTrackingChaturbateBundle\EXSLanderTrackingChaturbateBundle(),
        // ...
    );
}

Configuration

The cmp parameter has a default value configurable with this configuration key :

# Default values.
exs_lander_tracking_chaturbate:
    default_cmp: 1

This default value will be used over EXS-LanderTrackingHouseBundle's cmp default value.

Usage

Example :

    <a href="{{ 'http://www.test.tld/' | appendTracking('chaturbate') }}">Some link</a>
    <!-- Will generate : "http://www.test.tld/?track=123~987654321~5" -->
    
    <a href="{{ 'http://www.test.tld/?foo=bar' | appendTracking('chaturbate') }}">Some link</a>
    <!-- Will generate : "http://www.test.tld?foo=bar&track=123~987654321~5" -->

See EXS-LanderTrackingHouseBundle's documentation for more information.