function registry_get_parsed_files

Return the list of files in registry_file

Related topics

1 call to registry_get_parsed_files()
_registry_update in drupal/includes/registry.inc
Does the work for registry_update().

File

drupal/includes/registry.inc, line 115
This file contains the code registry parser engine.

Code

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;
}