You are here

function custom_search_enable in Custom Search 7

Same name and namespace in other branches
  1. 6 custom_search.install \custom_search_enable()

Implements hook_enable().

File

./custom_search.install, line 30
Install, update, and uninstall functions for the custom search module.

Code

function custom_search_enable() {
  drupal_set_message(t('Custom Search enabled. Don\'t forget to <a href="@link">set permissions</a>.', array(
    '@link' => url('admin/people/permissions', array(
      'fragment' => 'module-custom_search',
    )),
  )));
}