PHP code example of exs / lander-tracking-awe-bundle
1. Go to this page and download the library: Download exs/lander-tracking-awe-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
exs / lander-tracking-awe-bundle example snippets
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new EXS\LanderTrackingHouseBundle\EXSLanderTrackingHouseBundle(),
new EXS\LanderTrackingAWEBundle\EXSLanderTrackingAWEBundle(),
// ...
);
}
twig
<a href="{{ 'http://www.test.tld/' | appendTracking('awe') }}">Some link</a>
<!-- Will generate : "http://www.test.tld/?prm[campaign_id]=123&subAffId=987654321~5" -->
<a href="{{ 'http://www.test.tld/?foo=bar' | appendTracking('awe') }}">Some link</a>
<!-- Will generate : "http://www.test.tld?foo=bar&prm[campaign_id]=123&subAffId=987654321~5" -->