You are here

function google_analytics_reports_permission in Google Analytics Reports 7

Same name and namespace in other branches
  1. 7.3 google_analytics_reports.module \google_analytics_reports_permission()

Implementation of hook_permission().

File

google_analytics_reports/google_analytics_reports.module, line 82
Front-end interfaces that use the Google Analytics API module.

Code

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