You are here

function service_links_theme in Service links 6.2

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

Implementation of hook_theme().

File

./service_links.module, line 309
Adds social network links to the content.

Code

function service_links_theme() {
  return array(
    'service_links_build_link' => array(
      'arguments' => array(
        'text' => NULL,
        'url' => array(),
        'image' => NULL,
        'nodelink' => FALSE,
        'style' => NULL,
        'attributes' => array(),
      ),
      'file' => 'service_links.theme.inc',
    ),
    'service_links_node_format' => array(
      'arguments' => array(
        'links' => NULL,
        'label' => NULL,
      ),
      'file' => 'service_links.theme.inc',
    ),
    'service_links_block_format' => array(
      'arguments' => array(
        'items' => NULL,
        'style' => SERVICE_LINKS_STYLE_IMAGE_AND_TEXT,
      ),
      'file' => 'service_links.theme.inc',
    ),
    'service_links_fisheye_format' => array(
      'arguments' => array(
        'items' => NULL,
      ),
      'file' => 'service_links.theme.inc',
    ),
    'service_links_drag_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'service_links.admin.inc',
    ),
  );
}