You are here

function certificate_perm in Certificate 6

Same name and namespace in other branches
  1. 6.2 certificate.module \certificate_perm()

Implementation of hook_perm().

File

./certificate.module, line 301
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',
  );
}