registry_get_parsed_files()
drupal/includes/registry.inc, line 96
Return the list of files in registry_file
| Name | Description |
|---|---|
| Code registry | The code registry engine. |
function registry_get_parsed_files() {
$files = array();
// We want the result as a keyed array.
$files = db_query("SELECT * FROM {registry_file}")->fetchAllAssoc('filename', PDO::FETCH_ASSOC);
return $files;
}