An Universal Analytics component for the Yii framework. This is for the newer version of Google Analytics (analytics.js). Below will give you an overview of how to install and use the basics of this extension.
The first step is straightforward; simply unzip the files from the latest download
into a directory under extensions called TPUniversalAnlaytics. You should now be able to navigate to protected/extensions/TPUniversalAnlaytics/components
and see a file called TPUniversalAnalytics.php
.
You can also install this as a Git submodule. This can be done with running the following
command in the root of your project, where the path to the extensions folder (protected/extensions
) might need updating.
git submodule add git://github.com/TagPlanet/yii-analytics-ua.git protected/extensions/TPUniversalAnalytics
By using a submodule, this will guarantee you'll have access to the latest version at all times.
Within your configuration files (usually found under /protected/config/
) there is the "components" section. Just like your db and cache
components, we'll need to add in our own configuration for this. Add in the following code within the components section:
'universalAnalytics' => array(
'class' =>'ext.TPUniversalAnalytics.components.TPUniversalAnalytics',
'property' => 'UA-########-#',
),
In order for the Universal Analytics component to automatically render the code in the header, you must have the following two items configured:
- Configuration file - within the universalAnalytics configuration, you must include:
'universalAnalytics' => array(
'class' =>'ext.TPUniversalAnalytics.components.TPUniversalAnalytics',
'property' => 'UA-########-#',
'autoRender' => true,
),
- Controllers - your controllers must have the following code:
protected function afterRender($view, &$output)
{
parent::afterRender($view, $output);
Yii::app()->universalAnalytics->render();
}
You can place this either within protected/components/Controller.php
(or whichever Controller you are overloading) or within
every single one of your controllers. In the event that you already have the method afterRender
within your controllers, simple
add in the following line to it, before the return statement:
Yii::app()->universalAnalytics->render();
If you opt to not automatically render the JavaScript code, Yii::app()->universalAnalytics->render()
will return JavaScript code
(you'll need to wrap <script> ... </script>
around it) for you to print on page. More on this later.
This component allows for some flexibility within the configuration section. Below are all of the allowed configuration variables:
- class - The TPUniversalAnalytics class location
- Required: yes
- Type: string
- Default:
ext.TPUniversalAnalytics.components.TPUniversalAnalytics
- property - Your Universal Analytics property ID
- Required: yes
- Type: string
- Format:
UA-########-#
- Default: (none)
- autoRender - Automatically render the Universal Analytics code in the head. If you do set this to true, you will need to update your controller's
afterRender
method- Required: no
- Type: boolean
- Recommend Setting: true
- Default: false
- autoPageview - Automatically add a
ga('send', 'pageview')
event on everyrender
call- Required: no
- Type: boolean
- Recommend Setting: true
- Default: true
- debug - Changes Google's JS to their analytics_debug.js file and includes Yii debugging
- Required: no
- Type: boolean
- Recommend Setting: false in production, true in development
- Default: false
Also allowed within the configuration options are any of the create-only properties that Universal Analytics allows within the create call. Simply use the field name, as specified within Google's documentation. Below is a configuration example with some of the create-only properties used:
'universalAnalytics' => array(
'class' =>'ext.TPUniversalAnalytics.components.TPUniversalAnalytics',
'property' => 'UA-########-#',
'autoRender' => true,
'cookieDomain' => 'none',
'legacyCookieDomain' => 'none',
'sampleRate' => 80,
),
The above example would render the following on-page code:
ga('create', 'UA-########-#', {
"cookieDomain": "none",
"legacyCookieDomain": "none",
"sampleRate": 80
});
Since the Universal Analytics extension is setup as a component, you can simply use the following call to access the extension:
Yii::app()->universalAnalytics
In Universal Analytics, you call various methods to change the settings and values that are passed to Google's severs. For the Yii extension, you use a similar setup. All you need to do is call the name of the method, and pass in the parameters (not as an array!)
A normal call to set a custom variable in JavaScript:
ga('send', 'event', 'foobar category', 'ze action!');
Within a controller or view, you can do the same as above via the extension:
Yii::app()->universalAnalytics->send('event', 'foobar category', 'ze action!');
Sometimes you need to push quite a bit of data into Universal Analytics. With this extension, that is fairly easy.
For an example, let's push in a transaction when the user completes a checkout via the checkout
action within the
cart
controller. You can see within this example that Yii's relational records can be used (see: $order->Store->Name
)
protected/controllers/cart.php
:
<?php
// ...
protected function afterRender($view, &$output)
{
parent::afterRender($view, $output);
Yii::app()->universalAnalytics->render();
}
public function actionCheckout( )
{
// Do some processing here (let's say $order has information about the order)
if($order->isComplete)
{
// Include the ecommerce plugin (newly required by Google!)
Yii::app()->universalAnalytics->require('ecommerce', 'ecommerce.js');
// Start the transaction using $order's information
Yii::app()->universalAnalytics->ecommerce_addTransaction(array(
'id' => $order->OrderID,
'affiliation' => $order->Store->Name,
'revenue' => $order->Total,
'shipping' => $order->ShippingAmount,
'tax' => $order->Tax,
));
// Loop through each item that the order had
foreach($order->Items as $item)
{
// And add in the item to pass to Universal Analytics
Yii::app()->universalAnalytics->ecommerce_addItem(array(
'id' => $order->OrderID,
'sku' => $item->SKU,
'name' => $item->Name,
'category' => $item->Category->Name,
'quantity' => $item->Quantity,
));
}
// Finally, call _trackTrans to finalize the order.
Yii::app()->googleAnalytics->ecommerce_send();
}
}
Do note that Universal Analyics JavaScript uses ecommerce:send
and this component uses ecommerce_send
.
Any method that has a colon within the name should have the colon replaced with an underscore.
Since Universal Analytics uses less methods than Google Analytics,
most are available via this component. The exceptions are those that start with get
.
It should be noted that methods are output in a FIFO (First In, First Out) method. This is important because some methods such as set need to be pushed before a send event in order for the data to be sent in properly
Rendering within the component depends on the way you configured it.
If auto rendering is enabled and you followed the configuration steps (adding afterRender
call to your controllers)
then there is nothing else for you to do to render the JavaScript code.
If you have auto rendering disabled (which it is by default), then you can call the render()
method within your views
which will return the rendered Universal Analytics JavaScript code. In almost all cases, you should use this in your main layout views (e.g. protected/views/layouts/main.php
)
<script type="text/JavaScript">
<?php echo Yii::app()->universalAnalytics->render(); ?>
</script>
Note: The render
method does not wrap <script></script>
tags around the output. If auto-rendering is enabled,
CClientScript::registerScript
is utilized, otherwise JavaScript code is returned.