function theme_opml_icon in Organic groups 5.3
Same name and namespace in other branches
- 5.8 og.module \theme_opml_icon()
- 5 og.module \theme_opml_icon()
- 5.2 og.module \theme_opml_icon()
- 5.7 og.module \theme_opml_icon()
- 6.2 og.module \theme_opml_icon()
- 6 og.module \theme_opml_icon()
Return code that emits an XML icon. TODO: this belongs in theme.inc
File
- ./
og.module, line 2200
Code
function theme_opml_icon($url) {
if ($image = theme('image', drupal_get_path('module', 'og') . '/opml.gif', t('OPML file'), t('OPML file'))) {
return '<a href="' . check_url($url) . '" class="opml-icon">' . $image . '</a>';
}
}