You are here

function copyprevention_permission in Copy Prevention 7

Implements hook_permission().

File

./copyprevention.module, line 11
Main file for Copy Prevention module.

Code

function copyprevention_permission() {
  return array(
    'bypass copy prevention' => array(
      'title' => t('Bypass Copy prevention'),
      'description' => t('Bypass copy prevention methods.'),
    ),
    'administer copy prevention' => array(
      'title' => t('Administer Copy prevention'),
      'description' => t('Administer copy prevention settings.'),
    ),
  );
}