You are here

function share42_permission in Share42 - social sharing buttons 7.2

Implements hook_permission().

File

./share42.module, line 25
Main file for the Share42 module.

Code

function share42_permission() {
  return array(
    'administer share42' => array(
      'title' => t('Administer Share42'),
      'description' => t('Perform administration tasks for Share42 module.'),
    ),
  );
}