You are here

function autoload_modules_enabled in Autoload 7

Implements hook_modules_enabled().

File

./autoload.install, line 11
Installation and updating tasks.

Code

function autoload_modules_enabled() {
  if (!function_exists('autoload_paths_recompute')) {
    drupal_load('module', 'autoload');
  }
  autoload_paths_recompute();
}