function certificate_perm in Certificate 6.2
Same name and namespace in other branches
- 6 certificate.module \certificate_perm()
Implementation of hook_perm().
File
- ./
certificate.module, line 210 - Certificate module.
Code
function certificate_perm() {
return array(
'access all certificates',
'administer certificates',
'create certificate content',
'delete own certificate content',
'delete any certificate content',
'edit own certificate content',
'edit any certificate content',
'view all user certificates',
);
}