function encryption_perm

6.x encryption.module encryption_perm()

Implements hook_perm

File

modules/encryption/encryption.module, line 11
This is the main module file for the encryption module.

Code

function encryption_perm() {
  return array(
    "administer_encryption" => array(
      "title" => t("Administer encryption module"),
      "description" => t("Configure settings relating to the encryption module."),
      "admin_restricted" => TRUE, // means only appears for admin (user_id == 1)
    ),
  );
}