You are here

function commons_status_streams_enable in Drupal Commons 6.2

Implementation of hook_enable()

File

modules/features/commons_status_streams/commons_status_streams.module, line 81

Code

function commons_status_streams_enable() {

  // See if user points is enabled
  if (module_exists('userpoints')) {

    // Enable the integration between status streams and userpoints
    drupal_install_modules(array(
      'fbss_userpoints',
    ));
  }
  commons_status_streams_setup_group_context();
}