You are here

function theme_site_map_rss_legend in Site map 6.2

Same name and namespace in other branches
  1. 8 site_map.theme.inc \theme_site_map_rss_legend()
  2. 7 includes/site_map.theme.inc \theme_site_map_rss_legend()

Theme function for rss legend.

1 theme call to theme_site_map_rss_legend()
template_preprocess_site_map in ./site_map.theme.inc
Process variables for site-map.tpl.php.

File

./site_map.theme.inc, line 11
Site map theme functions.

Code

function theme_site_map_rss_legend() {
  $output .= '<p><strong>' . t('Legend:') . '</strong><br />';
  $output .= '<span class="rss">' . theme('site_map_feed_icon', NULL) . '</span> ' . t('Link to a content RSS feed');
  $output .= '<br /><span class="rss">' . theme('site_map_feed_icon', NULL, 'comment') . '</span> ' . t('Link to a comment RSS feed');
  $output .= '</p>';
  return $output;
}