You are here

autoload.install in Autoload 6

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

File

autoload.install
View source
<?php

/**
 * Implementaton of hook_enable().
 */
function autoload_enable() {
  db_query("UPDATE {system} SET weight = -100 WHERE name = 'autoload' AND type = 'module'");
  spl_autoload_register('autoload_class');
}

/**
 * Set a low module weight to ensure this module is enabled before those that depend on it.
 */
function autoload_update_6001() {
  db_query("UPDATE {system} SET weight = -100 WHERE name = 'autoload' AND type = 'module'");
  return array();
}

Functions

Namesort descending Description
autoload_enable Implementaton of hook_enable().
autoload_update_6001 Set a low module weight to ensure this module is enabled before those that depend on it.