You are here

function custom_search_enable in Custom Search 6

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

Implementation of hook_enable().

File

./custom_search.install, line 81
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/user/permissions', array(
      'fragment' => 'module-custom_search',
    )),
  )));
}