You are here

protected function GAFeed::setQueryPath in Google Analytics Counter 7.2

Set the queryPath property

10 calls to GAFeed::setQueryPath()
GAFeed::getAccessToken in ./GAFeed.lib.inc
OAuth step #3: Fetch access token.
GAFeed::getRequestToken in ./GAFeed.lib.inc
OAuth step #1: Fetch request token.
GAFeed::obtainAuthorization in ./GAFeed.lib.inc
OAuth step #2: Authorize request token.
GAFeed::queryAccounts in ./GAFeed.lib.inc
Query Management API - Accounts
GAFeed::queryGoals in ./GAFeed.lib.inc
Query Management API - Goals

... See full list

File

./GAFeed.lib.inc, line 89
Provides the GAFeed object type and associated methods.

Class

GAFeed
GAFeed class to authorize access to and request data from the Google Analytics Data Export API.

Code

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