You are here

function adsense_id_help_text in Google AdSense integration 6

Same name and namespace in other branches
  1. 5.3 help/adsense_id_help.inc \adsense_id_help_text()
  2. 7 help/adsense_id_help.inc \adsense_id_help_text()

Creates the help text for the Publisher ID tab.

Return value

string HTML with the help text

1 call to adsense_id_help_text()
adsense_id_settings in ./adsense.admin.inc
Menu callback for the adsense publisher ID settings form.

File

help/adsense_id_help.inc, line 13
Helpfile for the Publisher ID tab of the adsense module configuration.

Code

function adsense_id_help_text() {
  $output = <<<EOF
<h2>Overview</h2>
<p>This module provides a simple way of selecting the Adsense Publisher ID for a single owner site
that does not need revenue sharing.</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 enter your Google Adsense Publisher ID in the text field, and click
the 'Save configuration' button.</p>
EOF;
  return $output;
}