You are here

function theme_service_links_block_format in Service links 5

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

File

./service_links.module, line 476
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_block_format($items) {
  return '<div class="service-links">' . theme('item_list', array_values($items)) . '</div>';
}