You are here

function sharethis_theme in ShareThis 7.2

Same name and namespace in other branches
  1. 8.2 sharethis.module \sharethis_theme()
  2. 6 sharethis.module \sharethis_theme()

Implements hook_theme().

File

./sharethis.module, line 168
A module that adds one of the ShareThis widget to your website.

Code

function sharethis_theme($existing, $type, $theme, $path) {
  $theme = array();
  $theme['sharethis'] = array(
    'variables' => array(
      'data_options' => NULL,
      'm_path' => NULL,
      'm_title' => NULL,
    ),
  );
  return $theme;
}