class Piwik::Referrers
Public Instance Methods
keywords(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 33 def keywords params = {} getKeywords(defaults.merge(params)) end
keywords_count(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 45 def keywords_count params = {} getNumberOfDistinctKeywords(defaults.merge(params)).value end
keywords_for_title(title, params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 37 def keywords_for_title(title, params = {}) getKeywordsForPageTitle(defaults.merge(params).merge(:pageTitle => title)) end
keywords_for_url(url, params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 41 def keywords_for_url(url, params = {}) getKeywordsForPageUrl(defaults.merge(params).merge(:pageUrl => url)) end
search_engines(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 49 def search_engines params = {} getSearchEngines(defaults.merge(params)) end
search_engines_count(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 53 def search_engines_count params = {} getNumberOfDistinctSearchEngines(defaults.merge(params)).value end
websites(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 25 def websites params = {} getWebsites(defaults.merge(params)) end
websites_count(params = {})
click to toggle source
# File lib/piwik/referrers.rb, line 29 def websites_count params = {} getNumberOfDistinctWebsites(defaults.merge(params)).value end