You are here

function google_analytics_api_permission in Google Analytics Reports 7

Implementation of hook_permission().

File

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

Code

function google_analytics_api_permission() {
  return array(
    'administer google analytics reports' => array(
      'title' => t('administer google analytics reports'),
    ),
  );
}