You are here

function honeypot_perm in Honeypot 6

Implementation of hook_perm().

File

./honeypot.module, line 27
Honeypot module, for deterring spam bots from completing Drupal forms.

Code

function honeypot_perm() {
  return array(
    'administer honeypot',
    'bypass honeypot protection',
  );
}