6 module.inc | _module_build_dependencies($files) |
7 module.inc | _module_build_dependencies($files) |
8 module.inc | _module_build_dependencies($files) |
Find dependencies any level deep and fill in required by information too.
Parameters
$files: The array of filesystem objects used to rebuild the cache.
Return value
The same array with the new keys for each module:
- requires: An array with the keys being the modules that this module requires.
- required_by: An array with the keys being the modules that will not work without this module.
File
- includes/
module.inc, line 217 - API for loading and interacting with Drupal modules.
Code
<?php
function _module_build_dependencies($files) {
require_once DRUPAL_ROOT . '/includes/graph.inc';
foreach ($files as $filename => $file) {
$graph[$file->name]['edges'] = array();
if (isset($file->info['dependencies']) && is_array($file->info['dependencies'])) {
foreach ($file->info['dependencies'] as $dependency) {
$dependency_data = drupal_parse_dependency($dependency);
$graph[$file->name]['edges'][$dependency_data['name']] = $dependency_data;
}
}
}
drupal_depth_first_search($graph);
foreach ($graph as $module => $data) {
$files[$module]->required_by = isset($data['reverse_paths']) ? $data['reverse_paths'] : array();
$files[$module]->requires = isset($data['paths']) ? $data['paths'] : array();
$files[$module]->sort = $data['weight'];
}
return $files;
}
?>
Login or register to post comments