You are here

function security_review_enable in Security Review 7

Same name and namespace in other branches
  1. 6 security_review.install \security_review_enable()

Implements hook_enable().

File

./security_review.install, line 12
Install, update and uninstall functions for the security_review module.

Code

function security_review_enable() {
  drupal_set_message(t('Security Review module enabled. You should first set the module access permissions at !link. Be sure to grant permissions to trusted users only as this module can show sensitive site information.', array(
    '!link' => l('admin/people/permissions', 'admin/people/permissions'),
  )));
}