You are here

function adsense_help in Google AdSense integration 5

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

Implementation of hook_help().

File

./adsense.module, line 116

Code

function adsense_help($section) {
  switch ($section) {
    case 'admin/settings/adsense':
      return t('<p>@revision @date</p>', array(
        '@revision' => trim('$Revision$', ' $'),
        '@date' => trim('$Date$', ' $'),
      ));
  }
}