You are here

function sharethis_permission in ShareThis 7.2

Implements hook_permission().

File

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

Code

function sharethis_permission() {
  return array(
    'administer sharethis' => array(
      'title' => t('Administer ShareThis'),
      'description' => t('Change the settings for how ShareThis behaves on the site.'),
    ),
  );
}