You are here

protected function GoogleAnalyticsCounterFeed::setQueryPath in Google Analytics Counter 7.3

Set the queryPath property.

6 calls to GoogleAnalyticsCounterFeed::setQueryPath()
GoogleAnalyticsCounterFeed::queryAccounts in ./google_analytics_counter_oauth2.lib.inc
Query Management API - Accounts.
GoogleAnalyticsCounterFeed::queryGoals in ./google_analytics_counter_oauth2.lib.inc
Query Management API - Goals.
GoogleAnalyticsCounterFeed::queryProfiles in ./google_analytics_counter_oauth2.lib.inc
Query Management API - Profiles.
GoogleAnalyticsCounterFeed::queryReportFeed in ./google_analytics_counter_oauth2.lib.inc
Query and sanitize report data.
GoogleAnalyticsCounterFeed::querySegments in ./google_analytics_counter_oauth2.lib.inc
Query Management API - Segments.

... See full list

File

./google_analytics_counter_oauth2.lib.inc, line 248
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

protected function setQueryPath($path) {
  $this->queryPath = 'https://' . $this->host . '/' . $path;
}