You are here

function acquia_search_enable in Acquia Search 6.3

Same name and namespace in other branches
  1. 6 acquia_search.module \acquia_search_enable()

Implementation of hook_enable().

File

./acquia_search.module, line 53
Integration between Acquia Drupal and Acquia's hosted solr search service.

Code

function acquia_search_enable() {

  // Send a heartbeat so the Acquia Network knows the module is enabled.
  // This causes an invocation of hook_acquia_subscription_status() which is
  // implemented in this module to set up the environment.
  _acquia_search_set_version();
  acquia_agent_check_subscription();
}