You are here

function adsense_click_permission in Google AdSense integration 7

Implements hook_permission().

File

contrib/adsense_click/adsense_click.module, line 64
Enables Drupal to track and log the clicks on AdSense ads.

Code

function adsense_click_permission() {
  return array(
    'view clicks' => array(
      'title' => 'View AdSense clicks',
    ),
  );
}