function xmlsitemap_engines_help in XML sitemap 6.2
Same name and namespace in other branches
- 8 xmlsitemap_engines/xmlsitemap_engines.module \xmlsitemap_engines_help()
- 7.2 xmlsitemap_engines/xmlsitemap_engines.module \xmlsitemap_engines_help()
- 2.x xmlsitemap_engines/xmlsitemap_engines.module \xmlsitemap_engines_help()
Implements hook_help().
File
- xmlsitemap_engines/
xmlsitemap_engines.module, line 6
Code
function xmlsitemap_engines_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/settings/xmlsitemap/engines':
if (!module_exists('site_verify')) {
$output .= '<p>' . t('In order to verify site ownership with the search engines listed below, it is highly recommended to download and install the <a href="@site-verify">Site verification module</a>.', array(
'@site-verify' => 'http://drupal.org/project/site_verify',
)) . '</p>';
}
break;
}
return $output;
}