| Versionen | |
|---|---|
| drupal7 | registry_get_parsed_files() |
Return the list of files in registry_file
includes/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen