module.inc
Version
1.93.2.2 (checked in on 2007/07/21 at 00:54:18 by drumm)
Description
API for loading and interacting with Drupal modules.
Functions
| Name | Description |
|---|---|
| module_disable | Disable a given set of modules. |
| module_enable | Enable a given list of modules. |
| module_exists | Determine whether a given module exists. |
| module_hook | Determine whether a module implements a hook. |
| module_implements | Determine which modules are implementing a hook. |
| module_invoke | Invoke a hook in a particular module. |
| module_invoke_all | Invoke a hook in all enabled modules that implement it. |
| module_iterate | Call a function repeatedly with each module in turn as an argument. |
| module_list | Collect a list of all loaded modules. During the bootstrap, return only vital modules. See bootstrap.inc |
| module_load_all | Load all the modules that have been enabled in the system table. |
| module_load_install | Load a module's installation hooks. |
| module_rebuild_cache | Rebuild the database cache of module files. |
| _module_build_dependents | Find dependents; modules that are required by other modules. Adds an array of dependents to the $file->info array. |
| _module_parse_info_file | Parse Drupal info file format. Uses ini parser provided by php's parse_ini_file). |
