function registry_get_parsed_files

registry_get_parsed_files()

Return the list of files in registry_file

Related topics

File

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!registry.inc/function/registry_get_parsed_files/7.x