You are here

function xmlsitemap_menu_xmlsitemap_description in XML sitemap 5.2

Implementation of hook_xmlsitemap_description().

File

xmlsitemap_menu/xmlsitemap_menu.module, line 56
Adds menu items to the sitemap.

Code

function xmlsitemap_menu_xmlsitemap_description() {
  return '<dt>' . t('XML sitemap menu') . '</dt>' . '<dd>' . t('It allows menu items to be added to the sitemap. You can choose the menus to include on the XML sitemap administration page and can add and remove menu items on the <a href="@menu">menu administration</a> page. The priority of a menu item is determined by its weight.', array(
    '@menu' => url('admin/build/menu'),
  )) . '</dd>';
}