function registry_get_parsed_files

7.x registry.inc 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-7.x/includes/registry.inc
Does the work for registry_update().

File

drupal-7.x/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;
}