You are here

function addtocopy_permission in Add link to copied text 7

Implements hook_permission().

File

./addtocopy.module, line 5

Code

function addtocopy_permission() {
  return array(
    'bypass addtocopy' => array(
      'title' => t('Bypass addtocopy'),
      'description' => t('Copy text without additional piece added by addtocopy.'),
    ),
  );
}