You are here

function adsense_managed_help_text in Google AdSense integration 7

Same name and namespace in other branches
  1. 5.3 managed/help/adsense_managed.help.inc \adsense_managed_help_text()
  2. 6 managed/help/adsense_managed.help.inc \adsense_managed_help_text()

Creates the help text for the Managed Ads tab.

Return value

string HTML with the help text

1 call to adsense_managed_help_text()
adsense_managed_settings in managed/adsense_managed.admin.inc
Menu callback for the adsense_managed module settings form.

File

managed/help/adsense_managed.help.inc, line 14
Help file for the Managed ads generator module.

Code

function adsense_managed_help_text() {
  $output = <<<EOF
<h2>Overview</h2>
<p>This module enables the simple inclusion of the new form of Google
AdSense Managed Ads in your Drupal site.</p>

<h2>Prerequisites</h2>
<p>You must have a Google AdSense account before using this module.</p>

<h2>Configuration</h2>
<p>To use this module, simply go to
<a href="https://www.google.com/adsense/settings">Google's AdSense site</a>
and create your ad units. Simply note down their slot numbers and use them
in this module.</p>
<p>When you create your ad in your Google Adsense account, it generally
takes less than 30 minutes before they start showing in your site, but it
can take as long as 48 hours. See the <a
href="https://www.google.com/adsense/support/bin/answer.py?answer=44511">
AdSense Code Implementation Guide</a> for more details.</p>
EOF;
  return $output;
}