You are here

function adsense_adstxt_help in Google AdSense integration 7

Same name and namespace in other branches
  1. 8 adstxt/adsense_adstxt.module \adsense_adstxt_help()

Implements hook_help().

File

adstxt/adsense_adstxt.module, line 31
Displays Google AdSense ads on Drupal pages.

Code

function adsense_adstxt_help($path, $arg) {
  switch ($path) {
    case 'admin/help#adsense_adstxt':
      return '<p>' . t('This module creates an ads.txt file compliant with the <a href="@link">ads.txt specification</a>.', array(
        '@link' => 'https://iabtechlab.com/ads-txt',
      )) . '</p>';
  }
  return '';
}