You are here

function theme_kml_feed_icon in KML 6.2

Same name and namespace in other branches
  1. 7 views/kml_views.theme.inc \theme_kml_feed_icon()

Theme function for feed icon.

1 theme call to theme_kml_feed_icon()
views_plugin_style_kml::attach_to in views/views_plugin_style_kml.inc
Attach this view to another display as a feed.

File

views/kml_views.theme.inc, line 56
Theming functions for KML module views output.

Code

function theme_kml_feed_icon() {
  $icon = drupal_get_path('module', 'kml') . '/images/kml.png';
  return theme('image', $icon, t('KML icon'), t('Download KML Feed'));
}