You are here

function outdatedbrowser_permission in Outdated Browser 7

Implements hook_permission().

File

./outdatedbrowser.module, line 29
Outdated Browser module file.

Code

function outdatedbrowser_permission() {
  return array(
    'administer outdatedbrowser' => array(
      'title' => t('Administer Outdated Browser configuration'),
      'description' => t('Configure Outdated Browser module.'),
    ),
  );
}