Version 1.211 (checked in on 2011/02/24 at 12:09:59 by dries)
API for loading and interacting with Drupal modules.
| Name | Description |
|---|---|
| drupal_alter | Hands off alterable variables to type-specific *_alter implementations. |
| drupal_required_modules | Array of modules required by core. |
| module_disable | Disable a given set of modules. |
| module_enable | Enables or installs a given list of modules. |
| module_exists | Determine whether a given module exists. |
| module_hook | Determine whether a module implements a hook. |
| module_hook_info | Retrieve a list of what hooks are explicitly declared. |
| module_implements | Determine which modules are implementing a hook. |
| module_implements_write_cache | Writes the hook implementation cache. |
| module_invoke | Invoke a hook in a particular module. |
| module_invoke_all | Invoke a hook in all enabled modules that implement it. |
| module_list | Returns a list of currently active modules. |
| module_load_all | Load all the modules that have been enabled in the system table. |
| module_load_all_includes | Load an include file for each of the modules that have been enabled in the system table. |
| module_load_include | Load a module include file. |
| module_load_install | Load a module's installation hooks. |
| system_list | Build a list of bootstrap modules and enabled modules and themes. |
| system_list_reset | Reset all system_list() caches. |
| _module_build_dependencies | Find dependencies any level deep and fill in required by information too. |