You are here

function realname_registration_enable in Realname registration 7.2

Same name and namespace in other branches
  1. 6.2 realname_registration.module \realname_registration_enable()

File

./realname_registration.install, line 10
Install, update and uninstall functions for the realname_registration module.

Code

function realname_registration_enable() {
  $success = t('Realname registration has been enabled. Please visit the <a href="@url">configuration page</a>.', array(
    '@url' => url('admin/config/people/realname_registration'),
  ));
  drupal_set_message($success, 'status');
}