function legal_permission in Legal 7
Same name and namespace in other branches
- 7.2 legal.module \legal_permission()
Implements hook_perm().
File
- ./
legal.module, line 31 - Module file for Legal.
Code
function legal_permission() {
return array(
'administer Terms and Conditions' => array(
'title' => t('Administer Terms and Conditions'),
),
'view Terms and Conditions' => array(
'title' => t('View Terms and Conditions'),
),
);
}