function linkchecker_permission in Link checker 7
Implements hook_permission().
File
- ./
linkchecker.module, line 61 - This module periodically check links in given node types, blocks etc.
Code
function linkchecker_permission() {
return array(
'access broken links report' => array(
'title' => t('Access broken links report'),
'description' => t('Allows users to access the global broken links report.'),
),
'access own broken links report' => array(
'title' => t('Access own broken links report'),
'description' => t('Allows users to access their user specific broken links report.'),
),
'administer linkchecker' => array(
'title' => t('Administer linkchecker'),
'description' => t('Allows users to administer linkchecker settings.'),
),
'edit link settings' => array(
'title' => t('Edit link settings'),
'description' => t('Allows users to edit broken link settings.'),
),
);
}