autoload.install in Autoload 6
Same filename and directory in other branches
File
autoload.installView 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
Name![]() |
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. |