function contactinfo_help in Contact Info 7
Implements hook_help().
File
- ./
contactinfo.module, line 11 - Collects contact information and displays it in an hCard block.
Code
function contactinfo_help($path, $arg) {
switch ($path) {
case 'admin/help#contactinfo':
$output = '<p>' . t('Contact information that you provide will be displayed on the site in the <a href="http://microformats.org/wiki/hcard">hCard microformat</a>. An hCard is a small bundle of code that you want to put on your web site so that Google Maps (and other mapping services) can more easily index the site’s location information.') . '</p>';
return $output;
case 'admin/config/system/contactinfo':
return '<p>' . t("Enter your site’s contact information into the appropriate fields. All fields are optional.") . '</p>';
}
}