You are here

function theme_service_links_node_format in Service links 5

Same name and namespace in other branches
  1. 6.2 service_links.theme.inc \theme_service_links_node_format()
  2. 6 service_links.module \theme_service_links_node_format()
  3. 7.2 service_links.theme.inc \theme_service_links_node_format()
1 theme call to theme_service_links_node_format()
service_links_nodeapi in ./service_links.module
Implementation of hook_nodeapi().

File

./service_links.module, line 472
Mantainer: Fabio Mucciante aka TheCrow Original Author: Fredrik Jonsson fredrik at combonet dot se A module that adds Digg, del.icio.us, reddit, Technorati etc. links to nodes.

Code

function theme_service_links_node_format($links) {
  return '<div class="service-links"><div class="service-label">' . t('Bookmark/Search this post with: ') . '</div>' . theme('links', $links) . '</div>';
}