2017 © Pedro Peláez
 

lib website-tracking-old

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

image

moosend/website-tracking-old

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 150 % Grown

The README.md

, (*1)

Build Status Latest Stable Version License , (*2)

Moosend tracking library - GuzzleHTTP~5

Pulling dependencies

This project uses composer for auto-loading and managing dependencies., (*3)

To install all dependencies run : composer install from your terminal / cmd, if everything goes fine you should see /vendor directory on root of this directory., (*4)

Running tests

This project relies on phpspec, an unit testing and BDD toolset. To run all tests type this on your terminal / cmd, (*5)

composer test

Initialisation

Before you dive in with sending events you have to create an instance of Tracker first and perform initialisation. This is very important as it wont send any data to the server without a proper initialisation. The init. phase deals with some Cookies that determines if current user is a new visitor or a returned one., (*6)

$trackerFactory = new Moosend\TrackerFactory();
$tracker = $trackerFactory->create($siteId, $requestUseragent, $requestIpAddress);

$tracker->init('site-id');

There is another alternative, by using the function called track() which creates the instance for you., (*7)

$tracker = track($siteId, $requestUseragent, $requestIpAddress);

You have to make sure that vendor/autoload.php is included somewhere on your code base in order to make this work., (*8)

Sending events

//identify
$tracker->identify('some@mail.com', 'John Doe', ['favourite-color' => 'blue']); //returns GuzzleHttp\Psr7\Response

//page view
$tracker->pageView('http://example.com');

//add to order
$tracker->addToOrder('itemCode', 'itemPrice', 'itemUrl', 'itemName', 'itemImage', $props);

//order completed
$order = $tracker->createOrder();

$order->addProduct('itemCode', 'itemPrice', 'itemUrl', 'itemName', 'itemImage', $props);
//add as many products as you want before tracking and order completed event
$order->addProduct('itemCode', 'itemPrice', 'itemUrl', 'itemName', 'itemImage', $props);

$tracker->orderCompleted($order);

The Versions

21/05 2018

dev-master

9999999-dev

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yannis Psarras

21/05 2018

1.12.55

1.12.55.0

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yannis Psarras

17/05 2018

1.12.54

1.12.54.0

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yannis Psarras

16/05 2018

1.12.52

1.12.52.0

By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Yannis Psarras