You are here

function adsense_help in Google AdSense integration 7

Same name and namespace in other branches
  1. 8 adsense.module \adsense_help()
  2. 5 adsense.module \adsense_help()
  3. 5.2 adsense.module \adsense_help()

Implements hook_help().

File

./adsense.module, line 207
Displays Google AdSense ads on Drupal pages.

Code

function adsense_help($path, $arg) {
  switch ($path) {
    case 'admin/help#adsense':
      module_load_include('inc', 'adsense', 'help/adsense.help');
      return adsense_help_text();
  }
  return '';
}