You are here

function theme_google_analytics_api_profile_label in Google Analytics Reports 6

Same name and namespace in other branches
  1. 7 google_analytics_api.module \theme_google_analytics_api_profile_label()

Theme the full string label of profiles.

Return value

Themed string label.

1 theme call to theme_google_analytics_api_profile_label()
google_analytics_api_admin in ./google_analytics_api.pages.inc
Menu callback - admin form for OAuth and other settings.

File

./google_analytics_api.module, line 172
Implements the API through which Google Analytics data can be accessed.

Code

function theme_google_analytics_api_profile_label($profile) {
  return $profile['profileName'] . ' - ' . $profile['webPropertyId'];
}