You are here

adsense_id_help.inc in Google AdSense integration 7

Same filename and directory in other branches
  1. 5.3 help/adsense_id_help.inc
  2. 6 help/adsense_id_help.inc

Help file for the Publisher ID tab of the adsense module configuration.

File

help/adsense_id_help.inc
View source
<?php

/**
 * @file
 * Help file for the Publisher ID tab of the adsense module configuration.
 */

/**
 * Creates the help text for the Publisher ID tab.
 *
 * @return string
 *   HTML with the help text
 */
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;
}

Functions

Namesort descending Description
adsense_id_help_text Creates the help text for the Publisher ID tab.