You are here

function google_analytics_counter_permission in Google Analytics Counter 7

Same name and namespace in other branches
  1. 7.3 google_analytics_counter.module \google_analytics_counter_permission()
  2. 7.2 google_analytics_counter.module \google_analytics_counter_permission()

Valid permissions for this module

Return value

array An array of valid permissions for the test_module module

File

./google_analytics_counter.module, line 12

Code

function google_analytics_counter_permission() {
  return array(
    'access google analytics counter' => array(
      'title' => t('access google analytics counter'),
      'description' => t('TODO Add a description for \'access google analytics counter\''),
    ),
    'administer google analytics counter' => array(
      'title' => t('administer google analytics counter'),
      'description' => t('TODO Add a description for \'administer google analytics counter\''),
    ),
  );
}