You are here

function protected_pages_enable in Protected Pages 7.2

Same name and namespace in other branches
  1. 7 protected_pages.install \protected_pages_enable()

Implements hook_enable().

File

./protected_pages.install, line 61
Protected Pages install file.

Code

function protected_pages_enable() {
  drupal_set_message(t('The Protected Pages module has been successfully enabled.
    Visit the <a href="@permissions">permissions</a>, and set the permissions.', array(
    '@permissions' => url('admin/people/permissions', array(
      'fragment' => 'module-protected_pages',
    )),
  )));
}