rsalas / server-side-google-analytics

PHP class to send pageViews or Events to Google Analytics without the need of javascript.

Home Page:http://www.sproutventure.com/gbs-customization-request/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

Server Side Google Analytics (SSGA) is a simple PHP 5 class, which allows to track server-side events and data within Google Analytics.

Drop-in solution for WordPress plugins (uses the WP HTTP API if available).

Usage

Google Analytics Server Side can be used simply in the following manner:

Easy:

ssga_track( 'UA-YOUR_NUMBER', 'yoursite.com', '/page.php' )

Advanced:

//create new ssga object
include 'lib/ss-ga.class.php';
$ssga = new ssga( 'UA-YOUR_NUMBER', 'yoursite.com' );

//Set a pageview
$ssga->set_page( '/page.php' );
$ssga->set_page_title( 'Page Title' );

// Send
$ssga->send();
$ssga->reset();

Set an event (based on http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html)

//$ssga as created above
$ssga->set_event( 'Feed', 'Categories', $label, $value );
$ssga->send();

About

PHP class to send pageViews or Events to Google Analytics without the need of javascript.

http://www.sproutventure.com/gbs-customization-request/


Languages

Language:PHP 100.0%