You are here

function google_analytics_reports_permission in Google Analytics Reports 7.3

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

Implements hook_permission().

File

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

Code

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