You are here

function sharethis_theme in ShareThis 8.2

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

Implements hook_theme().

File

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

Code

function sharethis_theme($existing, $type, $theme, $path) {
  return [
    'sharethis_block' => [
      'variables' => [
        'content' => [
          'st_spans' => NULL,
        ],
      ],
    ],
  ];
}