You are here

function crypt_blowfish_perm in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 backends/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_perm()
  2. 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_perm()
  3. 7 backends/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_perm()
  4. 7.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.module \crypt_blowfish_perm()

Implementation of hook_perm() @TODO

Return value

array An array of valid permissions for the crypt_blowfish module

File

connections/clients_drupal/crypt_blowfish/crypt_blowfish.module, line 33
PEAR Crypt_Blowfish integration

Code

function crypt_blowfish_perm() {
  return array(
    'crypt_blowfish admin',
  );
}