You are here

function service_links_theme in Service links 6

Same name and namespace in other branches
  1. 6.2 service_links.module \service_links_theme()
  2. 7.2 service_links.module \service_links_theme()

Implementation of hook_theme().

File

./service_links.module, line 338
Current Maintainer: 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 service_links_theme() {
  return array(
    'service_links_build_link' => array(
      'arguments' => array(
        'text' => NULL,
        'url' => NULL,
        'title' => NULL,
        'image' => NULL,
        'nodelink' => NULL,
      ),
    ),
    'service_links_node_format' => array(
      'arguments' => array(
        'links' => NULL,
      ),
    ),
    'service_links_block_format' => array(
      'arguments' => array(
        'items' => NULL,
      ),
    ),
  );
}