You are here

function media_sitemap_help in Media Sitemap 7

Implements hook_help().

File

./media_sitemap.module, line 12
This module is used for creating XML sitemap of Image/Video for Google.

Code

function media_sitemap_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#media_sitemap':
      $output .= '<h3>' . t('About the Media Sitemap Module') . '</h3>';
      $output .= '<p>' . t('This module is used for creating the image sitemap for google. Actually this module uses the media module for generating the sitemap of all images. To list all of your image sitemap <a href="@media_sitemap">Click Here</a>', array(
        '@media_sitemap' => url(MEDIA_SITEMAP_ADMIN_PATH . '/list'),
      )) . '</p>';
      break;
  }
  return $output;
}