You are here

function commons_reputation_enable in Drupal Commons 6.2

Implementation of hook_enable()

File

modules/features/commons_reputation/commons_reputation.module, line 21

Code

function commons_reputation_enable() {

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

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