You are here

function new_relic_rpm_modules_enabled in New Relic 7

Implements hook_modules_enabled().

File

./new_relic_rpm.module, line 361
Drupal module implementing New Relic.

Code

function new_relic_rpm_modules_enabled($modules) {

  // Make the Deploy call to New Relic.
  if (!empty($modules)) {
    new_relic_rpm_module_deploy($modules, NULL);
  }
}