You are here

autoload.install in Autoload 7

Same filename and directory in other branches
  1. 6.2 autoload.install
  2. 6 autoload.install
  3. 7.2 autoload.install

Installation and updating tasks.

File

autoload.install
View source
<?php

/**
 * @file
 * Installation and updating tasks.
 */

/**
 * Implements hook_modules_enabled().
 */
function autoload_modules_enabled() {
  if (!function_exists('autoload_paths_recompute')) {
    drupal_load('module', 'autoload');
  }
  autoload_paths_recompute();
}

Functions