function coder_review_permission in Coder 7
Same name and namespace in other branches
- 7.2 coder_review/coder_review.module \coder_review_permission()
Implements hook_permission().
File
- coder_review/coder_review.module, line 93 
Code
function coder_review_permission() {
  return array(
    'view code review' => array(
      'title' => t('View code review'),
      'description' => t('Perform code reviews on modules and themes.'),
    ),
    'view code review all' => array(
      'title' => t('View all code reviews'),
      'description' => t('Perform code reviews on modules and themes, using the "all" modules feature.'),
    ),
  );
}