<?php
// $Id: adsense_id_help.inc,v 1.1.2.3 2008/12/13 23:09:10 jcnventura Exp $
// Copyright 2005-2008 Khalid Baheyeldin - http://2bits.com
// Copyright 2008 Joao Ventura - http://www.venturas.org

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

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