Full ELMS Learning Network documentation
Code registry
- cis7 includes/registry.inc registry
- cle7 includes/registry.inc registry
- elmsmedia7 includes/registry.inc registry
- icor7 includes/registry.inc registry
- meedjum_blog7 includes/registry.inc registry
- mooc7 includes/registry.inc registry
The code registry engine.
Drupal maintains an internal registry of all functions or classes in the system, allowing it to lazy-load code files as needed (reducing the amount of code that must be parsed on each request).
Functions
Name![]() |
Location | Description |
---|---|---|
drupal_autoload_class |
includes/ |
Confirms that a class is available. |
drupal_autoload_interface |
includes/ |
Confirms that an interface is available. |
registry_get_parsed_files |
includes/ |
Return the list of files in registry_file |
registry_rebuild |
includes/ |
Rescans all enabled modules and rebuilds the registry. |
registry_update |
includes/ |
Updates the registry based on the latest files listed in the database. |
_registry_check_code |
includes/ |
Checks for a resource in the registry. |
_registry_parse_file |
includes/ |
Parse a file and save its function and class listings. |
_registry_parse_files |
includes/ |
Parse all files that have changed since the registry was last built, and save their function and class listings. |
_registry_update |
includes/ |
Does the work for registry_update(). |
File
- includes/
registry.inc, line 8 - This file contains the code registry parser engine.