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

File

includes/registry.inc, line 140

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.