You are here

function google_analytics_reports_api_permission in Google Analytics Reports 7.3

Implements hook_permission().

File

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

Code

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