You are here

function theme_google_analytics_counter_profile_label in Google Analytics Counter 7.3

Same name and namespace in other branches
  1. 7.2 google_analytics_counter_auth.inc \theme_google_analytics_counter_profile_label()

Theme the full string label of profiles.

1 theme call to theme_google_analytics_counter_profile_label()
google_analytics_counter_auth_admin in ./google_analytics_counter_auth.inc
Menu callback - admin form for OAuth and other settings.

File

./google_analytics_counter_auth.inc, line 278
Provides the GAFeed object type and associated methods.

Code

function theme_google_analytics_counter_profile_label($variables) {
  return $variables['profile']->name . ' (' . $variables['profile']->id . ')';
}