function hacked_permission in Hacked! 7.2
Same name and namespace in other branches
- 7.3 hacked.module \hacked_permission()
Implementation of hook_permission().
File
- ./
hacked.module, line 144 - The Hacked! module, shows which project have been changed since download.
Code
function hacked_permission() {
return array(
'view diffs of changed files' => array(
'title' => t('View diffs of changed files'),
'restrict access' => TRUE,
),
);
}