You are here

README.txt in GA Push 7

Same filename in this branch
  1. 7 README.txt
  2. 7 modules/form_validate/README.txt
  3. 7 modules/browser/README.txt
  4. 7 modules/log/README.txt
Same filename and directory in other branches
  1. 8 README.txt
README.txt
-------------------------------

This module sends data to google analytics and provides an API to integrate with
other modules.

--------------------------------------------------------------------------------
 METHODS:
--------------------------------------------------------------------------------

UNIVERSAL ANALYTICS
-------------------

Requeriments: Google Analytics 7.x-2.x https://drupal.org/project/google_analytics

- UTMP-JS:  It sends the data on client-side (next page load).
- UTMP-PHP: It sends the data on server-side.

CLASSIC ANALYTICS
-----------------

Requeriments: Google Analytics 7.x-1.x https://drupal.org/project/google_analytics

- JS: It sends the data on client-side (next page load).

- PHP: It sends the data on server-side. One of these libraries are required:

  - SSGA: Deprecated library(2009) to PHP 5.2+ versions
    You don't need to download this library, a modified version of this library 
    that implements curl is included on this module.
    Forked from: http://code.google.com/p/serversidegoogleanalytics/

  - PHP-GA: Recomended library only for versión 5.3+
    Requires PHP 5.3 as namespaces and closures are used.
    Download from: https://github.com/thomasbachem/php-ga
    Use the default libraries directory, usually "sites/all/libraries/",
    naming the folder "php-ga" (sites/all/libraries/php-ga).

    Example:
      /sites/all/libraries/php-ga/src/autoload.php
      /sites/all/libraries/php-ga/src/GoogleAnalytics

--------------------------------------------------------------------------------
 FEATURES:
--------------------------------------------------------------------------------

- Rules integration.
- Browser events.
- Form validate error events.

--------------------------------------------------------------------------------
 API USAGE:
--------------------------------------------------------------------------------

To push a custom query to google analytics see ga_push() function documentation.

File

README.txt
View source
  1. README.txt
  2. -------------------------------
  3. This module sends data to google analytics and provides an API to integrate with
  4. other modules.
  5. --------------------------------------------------------------------------------
  6. METHODS:
  7. --------------------------------------------------------------------------------
  8. UNIVERSAL ANALYTICS
  9. -------------------
  10. Requeriments: Google Analytics 7.x-2.x https://drupal.org/project/google_analytics
  11. - UTMP-JS: It sends the data on client-side (next page load).
  12. - UTMP-PHP: It sends the data on server-side.
  13. CLASSIC ANALYTICS
  14. -----------------
  15. Requeriments: Google Analytics 7.x-1.x https://drupal.org/project/google_analytics
  16. - JS: It sends the data on client-side (next page load).
  17. - PHP: It sends the data on server-side. One of these libraries are required:
  18. - SSGA: Deprecated library(2009) to PHP 5.2+ versions
  19. You don't need to download this library, a modified version of this library
  20. that implements curl is included on this module.
  21. Forked from: http://code.google.com/p/serversidegoogleanalytics/
  22. - PHP-GA: Recomended library only for versión 5.3+
  23. Requires PHP 5.3 as namespaces and closures are used.
  24. Download from: https://github.com/thomasbachem/php-ga
  25. Use the default libraries directory, usually "sites/all/libraries/",
  26. naming the folder "php-ga" (sites/all/libraries/php-ga).
  27. Example:
  28. /sites/all/libraries/php-ga/src/autoload.php
  29. /sites/all/libraries/php-ga/src/GoogleAnalytics
  30. --------------------------------------------------------------------------------
  31. FEATURES:
  32. --------------------------------------------------------------------------------
  33. - Rules integration.
  34. - Browser events.
  35. - Form validate error events.
  36. --------------------------------------------------------------------------------
  37. API USAGE:
  38. --------------------------------------------------------------------------------
  39. To push a custom query to google analytics see ga_push() function documentation.