You are here

function addthis_theme in AddThis 6.3

Same name and namespace in other branches
  1. 6.2 addthis.module \addthis_theme()
  2. 7.4 addthis.module \addthis_theme()
  3. 7.2 addthis.module \addthis_theme()

Implementation of hook_theme().

File

./addthis.module, line 114
Provides integration with the AddThis.com bookmarking & sharing service.

Code

function addthis_theme() {
  return array(
    'addthis_button' => array(
      'arguments' => array(
        'html' => NULL,
        'config' => array(),
      ),
    ),
    'addthis_toolbox' => array(
      'arguments' => array(
        'services' => NULL,
        'config' => array(),
      ),
    ),
    'addthis_toolbox_item' => array(
      'arguments' => array(
        'service' => NULL,
      ),
    ),
  );
}