You are here

function friendly_register_permission in Friendly Register 7

Implements hook_permission().

File

./friendly_register.module, line 33
Primary logic for the friendly_register module that allows for checking of username and email.

Code

function friendly_register_permission() {
  return array(
    'ignore flood' => array(
      'title' => t('Ignore Flood Checking'),
      'description' => t('Allows users to have unlimited checks against friendly register.'),
      'restrict access' => FALSE,
    ),
  );
}