You are here

public function GoogleAnalyticsCounterFeed::replaceData in Google Analytics Counter 7.3

Addition replacements.

File

./google_analytics_counter_oauth2.lib.inc, line 498
Provides the Google Analytics Counter Feed object type and associated methods. Most of the Google Analytics authentication process is taken over from http://drupal.org/project/google_analytics_reports because all we need here is its Google Analytics…

Class

GoogleAnalyticsCounterFeed
GoogleAnalyticsCounterFeed class to authorize access to and request data from the Google Analytics Core Reporting API.

Code

public function replaceData($type, $value) {
  switch ($type) {
    case 'userType':
      return $value == 'New Visitor' ? t('New Visitor') : t('Returning Visitor');
    case 'date':
      return strtotime($value);
    case 'yearMonth':
      return strtotime($value . '01');
    case 'userGender':
      return $value == 'male' ? t('Male') : t('Female');
    default:
      return $value;
  }
}