Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-12-11 08:59:14 +0400
committermattab <matthieu.aubry@gmail.com>2013-12-11 08:59:14 +0400
commit1adf1efaffcfbe36df9ab68d9dea488522ed8429 (patch)
treed29f08ae36330ecafd5e6e1d86d437fb5ece48db /libs
parent3dba981bf0666d2ab75de688b48b30732bcfc103 (diff)
Minor style
Diffstat (limited to 'libs')
-rw-r--r--libs/PiwikTracker/PiwikTracker.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/libs/PiwikTracker/PiwikTracker.php b/libs/PiwikTracker/PiwikTracker.php
index 47f985db59..ab90778899 100644
--- a/libs/PiwikTracker/PiwikTracker.php
+++ b/libs/PiwikTracker/PiwikTracker.php
@@ -18,12 +18,14 @@
*/
/**
- * PiwikTracker implements the Piwik Tracking API.
+ * PiwikTracker implements the Piwik Tracking Web API.
*
* The PHP Tracking Client provides all features of the Javascript Tracker, such as Ecommerce Tracking, Custom Variable, Event tracking and more.
* Functions are named the same as the Javascript functions.
*
- * ### Examples of how to use the PHP PiwikTracker class
+ * See introduction docs at: {@link http://piwik.org/docs/tracking-api/}
+ *
+ * ### Example: using the PHP PiwikTracker class
*
* The following code snippet is an advanced example of how to track a Page View using the Tracking API PHP client.
*
@@ -56,7 +58,7 @@
* // In the standard JS API, the content of the <title> tag would be set as the page title
* $t->doTrackPageView('This is the page title');
*
- * ### Example of tracking Ecommerce interactions
+ * ### Example: tracking Ecommerce interactions
*
* Here is an example showing how to track Ecommerce interactions on your website, using the PHP Tracking API.
* Usually, Ecommerce tracking is done using standard Javascript code,
@@ -86,7 +88,7 @@
* $t->addEcommerceItem($sku = 'SKU0321', $name = 'Amélie' , $categories = array('DVD Foreign','Best sellers','Our pick'), $price = 25, $quantity = 1);
* $t->doTrackEcommerceOrder($orderId = 'B000111387', $grandTotal = 55.5, $subTotal = 42, $tax = 8, $shipping = 5.5, $discount = 10);
*
- * ### Note about authentication via token_auth
+ * ### Note: authenticating with the token_auth
*
* To set the visitor IP, or the date and time of the visit, or to force to record the visit (or page, or goal conversion) to a specific Visitor ID,
* you must call setTokenAuth( $token_auth ). The token_auth must be either the Super User token_auth,