You are here

function addthis_theme in AddThis 7.2

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

Implement of hook_theme().

File

./addthis.module, line 106
Stand alone module file to handle AddThis button integration

Code

function addthis_theme() {
  return array(
    'addthis_button' => array(
      'arguments' => array(
        'node' => NULL,
        'teaser' => NULL,
      ),
    ),
  );
}