You are here

function hacked_permission in Hacked! 7.3

Same name and namespace in other branches
  1. 7.2 hacked.module \hacked_permission()

Implementation of hook_permission().

File

./hacked.module, line 89
The Hacked! module, shows which project have been changed since download.

Code

function hacked_permission() {
  return [
    'check hacked' => [
      'title' => t('Check your modules and themes'),
      'restrict access' => TRUE,
    ],
  ];
}