You are here

protected function GAFeed::setQueryPath in Google Analytics Reports 7

Same name and namespace in other branches
  1. 6 GAFeed.lib.inc \GAFeed::setQueryPath()

Set the queryPath property

6 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::queryAccountFeed in ./GAFeed.lib.inc
Query and sanitize account data
GAFeed::queryReportFeed in ./GAFeed.lib.inc
Query and sanitize report data

... See full list

File

./GAFeed.lib.inc, line 86
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;
}