theme_xml_icon

Versions
5 – 6
theme_xml_icon($url)

Return code that emits an XML icon.

Related topics

Code

5/includes/theme.inc, line 980

<?php
function theme_xml_icon($url) {
  if ($image = theme('image', 'misc/xml.png', t('XML feed'), t('XML feed'))) {
    return '<a href="'. check_url($url) .'" class="xml-icon">'. $image. '</a>';
  }
}
?>