You are here

function realname_registration_permission in Realname registration 7.2

Implementation of hook_permission().

File

./realname_registration.module, line 523
For using real names during registration/

Code

function realname_registration_permission() {
  return array(
    'administer realname registration' => array(
      'title' => t('Administer Realname registration'),
      'description' => t('Perform administration tasks for Realname registration.'),
    ),
  );
}